-
Notifications
You must be signed in to change notification settings - Fork 1
/
target.json
52 lines (52 loc) · 1.9 KB
/
target.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"device":"ARDUINO_UNO",
"processor":"ATMEGA328P",
"architecture":"AVR",
"toolchain":"AVR_GCC",
"generate_bin":true,
"generate_hex":true,
"post_process":"python ./utils/uf2conv.py -b 0 -o <OUTPUT_HEX_DESTINATION>/<OUTPUT_HEX_NAME>.uf2 -c <OUTPUT_BIN_LOCATION>",
"config":{
"F_CPU":"16000000L",
"DEVICE_SRAM_BASE":"RAMEND",
"DEVICE_SRAM_END":"RAMEND - 2048",
"DEVICE_STACK_BASE":"DEVICE_SRAM_BASE",
"AVR_STACK_BASE":"DEVICE_SRAM_BASE",
"DEVICE_STACK_SIZE":128,
"TARGET_DEBUG_CLASS":"NOT_IMPLEMENTED",
"DEVICE_HEAP_ALLOCATOR":1,
"DEVICE_TAG":0,
"SCHEDULER_TICK_PERIOD_US":6000,
"EVENT_LISTENER_DEFAULT_FLAGS":"MESSAGE_BUS_LISTENER_QUEUE_IF_BUSY",
"MESSAGE_BUS_LISTENER_MAX_QUEUE_DEPTH":10,
"USE_ACCEL_LSB":0,
"DEVICE_DEFAULT_SERIAL_MODE":"SYNC_SLEEP",
"DEVICE_COMPONENT_COUNT":60,
"DEVICE_DEFAULT_PULLMODE":"PullMode::None",
"DEVICE_PANIC_HEAP_FULL":1,
"DEVICE_DMESG_BUFFER_SIZE":0,
"CODAL_DEBUG":0,
"DEVICE_USB":0,
"PROCESSOR_WORD_TYPE":"uint16_t"
},
"definitions":"",
"cpu_opts":"",
"asm_flags":"-x assembler-with-cpp -mmcu=atmega328p",
"c_flags":"-std=c99 -mmcu=atmega328p",
"cpp_flags":"-g -Os -Wall -ffunction-sections -fdata-sections -mmcu=atmega328p -fno-exceptions -fpermissive -std=c++11 -fno-threadsafe-statics",
"linker_flags":"-Os -mmcu=atmega328p -Wl,--gc-sections -flto -fuse-linker-plugin -Wl,-flto",
"libraries":[
{
"name":"codal-atmega328p",
"url":"https://github.com/lancaster-university/codal-atmega328p",
"branch":"master",
"type":"git"
},
{
"name":"codal-core",
"url":"https://github.com/lancaster-university/codal-core",
"branch":"master",
"type":"git"
}
]
}