- Added simple serial test programm

- Added photos of the stencil
This commit is contained in:
sebastian 2013-01-19 16:43:55 +01:00
parent ba0b21be7d
commit f2e96391cc
3 changed files with 6 additions and 7535 deletions

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 457 KiB

View File

@ -6,4 +6,10 @@ Since I'm to lazy to write a proper makefile:
avr-gcc -Wall -Os -mmcu=atmega8 -DF_CPU=16000000 blinky.c -o blinky.elf
avr-objcopy -O ihex blinky.elf blinky.hex
avrdude -v -c arduino -p atmega8 -P /dev/ttyUSB0 -b 115200 -U flash:w:blinky.hex
```
```
avr-gcc -Wall -Os -mmcu=atmega8 -DF_CPU=16000000 serial.c -o serial.elf
avr-objcopy -O ihex serial.elf serial.hex
avrdude -v -c arduino -p atmega8 -P /dev/ttyUSB0 -b 115200 -U flash:w:serial.hex
```