SparkFun Forums 

Where electronics enthusiasts find answers.

Your source for all things Atmel.
By IDOGE
#1615
I am a newbie in avr programming. I got a couple of avr, bascom-avr compiler but I don't have a good test code.Can some one help me with a test code in basic , for example blinking a LED.
By Caffeine
#3169
IDOGE wrote:I am a newbie in avr programming. I got a couple of avr, bascom-avr compiler but I don't have a good test code.Can some one help me with a test code in basic , for example blinking a LED.
Have a look at some of the samples, the DT006 one in particular is quite simple
By idtat
#13495
$regfile = "attiny2313.dat"
$crystal = 10000000
Config Portb.7 = Output

Main:
Portb.7 = 1
Waitms 20

Portb.7 = 0
Waitms 10
Goto Main
End

Remember to remove J2 when programming then replace it to flash

I used the PonyProg to program the chip

Aaron