-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtarget.json
More file actions
57 lines (57 loc) · 2.57 KB
/
target.json
File metadata and controls
57 lines (57 loc) · 2.57 KB
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
54
55
56
57
{
"device":"STM32_IOT_NODE",
"processor":"STM32L4",
"architecture":"CORTEX_M4",
"toolchain":"ARM_GCC",
"post_process":"",
"generate_bin":true,
"generate_hex":true,
"config":{
"DEVICE_SRAM_BASE":"0x20000000",
"DEVICE_SRAM_END":"0x20018000",
"DEVICE_STACK_BASE":"DEVICE_SRAM_END",
"DEVICE_STACK_SIZE":2048,
"DEVICE_HEAP_ALLOCATOR":1,
"DEVICE_TAG":0,
"SCHEDULER_TICK_PERIOD_US":1000,
"EVENT_LISTENER_DEFAULT_FLAGS":"MESSAGE_BUS_LISTENER_DROP_IF_BUSY",
"MESSAGE_BUS_LISTENER_MAX_QUEUE_DEPTH":10,
"USE_ACCEL_LSB":0,
"DEVICE_DEFAULT_SERIAL_MODE":"SerialMode::SYNC_SLEEP",
"DEVICE_COMPONENT_COUNT":30,
"DEVICE_DEFAULT_PULLMODE":"PullMode::None",
"DEVICE_PANIC_HEAP_FULL":1,
"DEVICE_DMESG_BUFFER_SIZE":2048,
"DMESG_SERIAL_DEBUG" : 1,
"CODAL_DEBUG":"CODAL_DEBUG_ENABLED",
"DEVICE_USB":0,
"CODAL_TIMESTAMP":"uint32_t",
"PROCESSOR_WORD_TYPE":"uint32_t",
"BLUENRG_MS" : 1,
"USE_STM32L475E_IOT01" : 1,
"SET_L2CAP_CONN_UPD_REQ_COMMAND" : 1,
"DENABLE_SPI_FIX" : 1
},
"definitions":"-DSTM32L4 -DSTM32L475xx -DDMESG_SERIAL_DEBUG -include codal-stm32-iot-node/inc/localconf.h",
"cmake_definitions":{
},
"cpu_opts":"-mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16",
"asm_flags":"-fno-exceptions -fno-unwind-tables",
"c_flags":"-std=gnu11 -D__weak=\"__attribute__((weak))\" -D__packed=\"__attribute__((__packed__))\" -DUSE_HAL_DRIVER -DSTM32L475xx -fwrapv -Warray-bounds -ffunction-sections -fdata-sections -g -fstack-usage -Wall ",
"cpp_flags":"-std=c++11 -Wno-register -D__weak=\"__attribute__((weak))\" -D__packed=\"__attribute__((__packed__))\" -fwrapv -fno-rtti -fno-threadsafe-statics -fno-exceptions -fno-unwind-tables -Wl,--gc-sections -Wl,--sort-common -Wl,--sort-section=alignment -Wno-array-bounds -DUSE_HAL_DRIVER -DSTM32L475xx -g -fstack-usage -Wall",
"linker_flags":"-Wl,--no-wchar-size-warning -Wl,--gc-sections -static -Wl,--gc-sections -Wl,--defsym=malloc_getpagesize_P=0x80 -Wl,--start-group -lc -lm -Wl,--end-group -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16",
"libraries":[
{
"name":"codal-core",
"url":"https://github.com/LabAixBidouille-STM32/codal-core",
"branch":"master",
"type":"git"
},
{
"name":"codal-stm32l475",
"url":"https://github.com/nedseb/codal-stm32l475",
"branch":"master",
"type":"git"
}
]
}