diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2014-09-16 15:31:53 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2014-09-16 15:33:30 +0200 |
commit | b742ab3a288a1164b4ceb6e58ae42115d320d580 (patch) | |
tree | 7df7348f08f79e6e4cb3f492ba77f5d08260fa88 /Makefile | |
parent | 0a9d079451c1ae4ba85f6735943734767140248d (diff) | |
download | hourglass-b742ab3a288a1164b4ceb6e58ae42115d320d580.tar.gz hourglass-b742ab3a288a1164b4ceb6e58ae42115d320d580.tar.bz2 hourglass-b742ab3a288a1164b4ceb6e58ae42115d320d580.zip |
Finally fix speaker
Use one timer for LED/speaker. Not sure why two did not work.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ CFLAGS=-Os -Wall -Wextra all: sanduhr.hex -sanduhr.elf: main.c i2c.c i2c.h uart.c uart.h timer.c timer.h gyro.c gyro.h accel.c accel.h common.h speaker.c speaker.h pwm.c pwm.h ui.c ui.h +sanduhr.elf: main.c i2c.c i2c.h uart.c uart.h timer.c timer.h gyro.c gyro.h accel.c accel.h common.h pwm.c pwm.h ui.c ui.h avr-gcc -std=gnu99 -mmcu=$(MCU) $(CFLAGS) -o $@ $^ sanduhr.hex: sanduhr.elf |