diff options
author | Brett Weiland <brett_weiland@bpcsapce.com> | 2022-09-27 16:14:28 -0500 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcsapce.com> | 2022-09-27 16:14:28 -0500 |
commit | 94304b11e7220f060dbc345de5fa1952d0465016 (patch) | |
tree | f16e84c54b27f67e089ded1175fbf8b561896b42 /src/compile_commands.json | |
parent | 7b006d6f2032ac46074d693ae59a971bee327ace (diff) |
working on serial syncronization for programming eeprom
Diffstat (limited to 'src/compile_commands.json')
-rw-r--r-- | src/compile_commands.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/compile_commands.json b/src/compile_commands.json index dcb24f5..7cb5d9c 100644 --- a/src/compile_commands.json +++ b/src/compile_commands.json @@ -110,5 +110,31 @@ "-Wall" ], "file": "paint.c" + }, + { + "directory": "/home/indigo/projects/watch/src", + "arguments": [ + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/bin/avr-gcc", + "-mmcu=atmega328p", + "-I", + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/avr/include", + "-o", + "compiled_payload.elf", + "-DDEBUG_BUILD=1", + "-DBAUD=9600", + "-DF_CPU=16000000", + "-Wall", + "-O1", + "main.c", + "debug.c", + "i2c.c", + "ssd1306_display_driver.c", + "uart.c", + "br24t_eeprom_driver.c", + "paint.c", + "pcf_clock_driver.c", + "-Wall" + ], + "file": "pcf_clock_driver.c" } ] |