-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtarget.json
54 lines (53 loc) · 2.17 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
53
{
"device":"BLE_NANO",
"processor":"NRF52832",
"architecture":"CORTEX_M4F",
"toolchain":"ARM_GCC",
"post_process":"",
"generate_bin":true,
"generate_hex":true,
"definitions":"-DNRF52832 -DTARGET_MCU_NRF52832 -DNRF5 -DNRF52 -D__CORTEX_M4 -DS132 -DTOOLCHAIN_GCC",
"cmake_definitions":{
"MBED_LEGACY_TOOLCHAIN":"GCC_ARM;"
},
"config":{
"DEVICE_SRAM_BASE":"0x20000000",
"DEVICE_SRAM_END":"0x20010000",
"DEVICE_STACK_BASE":"DEVICE_SRAM_END",
"DEVICE_STACK_SIZE":2048,
"DEVICE_HEAP_ALLOCATOR":1,
"DEVICE_TAG":0,
"SCHEDULER_TICK_PERIOD_US":4000,
"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":1024,
"CODAL_DEBUG":"CODAL_DEBUG_DISABLED",
"DEVICE_USB":0,
"CODAL_TIMESTAMP":"uint64_t",
"PROCESSOR_WORD_TYPE":"uint32_t"
},
"cpu_opts":"-mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp",
"asm_flags":"-fno-exceptions -fno-unwind-tables --specs=nosys.specs -mcpu=cortex-m4 -mthumb ",
"c_flags":"-std=c99 --specs=nosys.specs -Warray-bounds",
"cpp_flags":"-std=c++11 -fwrapv -fno-rtti -fno-threadsafe-statics -fno-exceptions -fno-unwind-tables -Wl,--gc-sections -Wl,--sort-common -Wl,--sort-section=alignment -Wno-array-bounds",
"linker_flags":"-Wl,--no-wchar-size-warning -Wl,--gc-sections -Wl,--wrap,atexit -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -Wl,--start-group -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys -Wl,--end-group",
"libraries":[
{
"name":"codal-core",
"url":"https://github.com/lancaster-university/codal-core",
"branch":"master",
"type":"git"
},
{
"name":"codal-nrf52",
"url":"https://github.com/lancaster-university/codal-nrf52",
"branch":"master",
"type":"git"
}
]
}