eel4746_avr_piano

For our Microprocessor's class final project, we chose to make a chiptune piano using AVR C on two Arduino UNOs.
Log | Files | Refs | README | LICENSE

commit 0c484fcae021309d5ebaa409197c28c51885dac3
parent 21992cfc5410263750b481044ea77c431adff8d0
Author: Vineet K <git@vineetk.net>
Date:   Sun, 21 Apr 2024 17:31:01 -0400

update makefile

Diffstat:
MMakefile | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -19,11 +19,14 @@ lcd: ${OBJCOPY} -j .text -j .data -O ihex a.out lcd.hex rm -f a.out -flash_lcd: notes +flash_lcd: lcd avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:lcd.hex:i serial_setup: - stty -F ${PORT} raw speed 115200 cs8 -cstopb -parenb + stty -F ${PORT} raw speed 9600 cs8 -cstopb -parenb serial_open: od -x --endian=big -w4 ${PORT} + +serial_obsd: + cu -l ${PORT} -s 9600 | hexdump -C