diff options
author | Brett Weiland <brett_weiland@bpcspace.com> | 2022-09-09 18:33:15 -0500 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcspace.com> | 2022-09-09 18:33:15 -0500 |
commit | 7b006d6f2032ac46074d693ae59a971bee327ace (patch) | |
tree | 60963598d99001e0850e34d6271db8bd65e04fa4 /src/compile_commands.json |
init
Diffstat (limited to 'src/compile_commands.json')
-rw-r--r-- | src/compile_commands.json | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/src/compile_commands.json b/src/compile_commands.json new file mode 100644 index 0000000..dcb24f5 --- /dev/null +++ b/src/compile_commands.json @@ -0,0 +1,114 @@ +[ + { + "directory": "/home/indigo/projects/watch/src", + "arguments": [ + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/bin/avr-gcc", + "-v", + "-mmcu=atmega2560", + "-I", + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/avr/include", + "-o", + "compiled_payload", + "-DBAUD=9600", + "-DF_CPU=16000000", + "-Wall", + "-O1", + "main.c" + ], + "file": "main.c" + }, + { + "directory": "/home/indigo/projects/watch/src", + "arguments": [ + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/bin/avr-gcc", + "-lc", + "-mmcu=atmega2560", + "-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_serial.c", + "i2c.c", + "ssd1306_driver.h" + ], + "file": "i2c.c" + }, + { + "directory": "/home/indigo/projects/watch/src", + "arguments": [ + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/bin/avr-gcc", + "-mmcu=atmega2560", + "-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_driver.c", + "uart.c", + "-Wall" + ], + "file": "uart.c" + }, + { + "directory": "/home/indigo/projects/watch/src", + "arguments": [ + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/bin/avr-gcc", + "-mmcu=atmega2560", + "-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", + "-Wall" + ], + "file": "br24t_eeprom_driver.c" + }, + { + "directory": "/home/indigo/projects/watch/src", + "arguments": [ + "/home/indigo/packs/avr8-gnu-toolchain-linux_x86_64/bin/avr-gcc", + "-mmcu=atmega2560", + "-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", + "-Wall" + ], + "file": "paint.c" + } +] |