forked from PelionIoT/mbed-cloud-client-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbed_app.json
79 lines (79 loc) · 3.48 KB
/
mbed_app.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"macros": [
"ARM_UC_USE_PAL_BLOCKDEVICE=1",
"MBED_CLOUD_CLIENT_UPDATE_STORAGE=ARM_UCP_FLASHIAP_BLOCKDEVICE"
],
"target_overrides": {
"*": {
"target.features_add" : ["BOOTLOADER", "STORAGE"],
"target.components_add" : ["SD"],
"platform.stdio-baud-rate" : 115200,
"platform.stdio-convert-newlines" : true,
"platform.stdio-buffered-serial" : true,
"mbed-client.event-loop-size" : 1024,
"nanostack-hal.event_loop_thread_stack_size": 8192,
"update-client.storage-address" : "(1024*1024*64)",
"update-client.storage-size" : "(1024*1024*2)",
"update-client.storage-locations" : 1,
"mbed-trace.enable": null,
"nsapi.default-wifi-security" : "WPA_WPA2",
"nsapi.default-wifi-ssid" : "\"SSID\"",
"nsapi.default-wifi-password" : "\"Password\""
},
"STM_EMAC": {
"lwip.pbuf-pool-size" : 16,
"lwip.mem-size" : 12500
},
"K64F": {
"target.network-default-interface-type" : "ETHERNET",
"update-client.bootloader-details" : "0x00007188",
"update-client.application-details" : "(40*1024)"
},
"K66F": {
"target.network-default-interface-type" : "ETHERNET",
"update-client.bootloader-details" : "0x00007188",
"update-client.application-details" : "(40*1024)"
},
"NUCLEO_F429ZI": {
"target.network-default-interface-type" : "ETHERNET",
"update-client.bootloader-details" : "0x080078CC",
"update-client.application-details" : "(0x08000000+64*1024)"
},
"UBLOX_EVK_ODIN_W2": {
"target.network-default-interface-type" : "WIFI",
"update-client.bootloader-details" : "0x08007300",
"update-client.application-details" : "(0x08000000+64*1024)",
"target.lse_available" : 0,
"target.macros_remove" : ["MBEDTLS_CONFIG_HW_SUPPORT"]
},
"NUCLEO_F411RE": {
"client_app.mbedtls-user-config-file" : "\"mbedTLSConfig_mbedOS_SW_TRNG.h\"",
"client_app.pal-user-defined-configuration": "\"sotp_non_trng_config_MbedOS.h\"",
"target.network-default-interface-type" : "WIFI",
"drivers.uart-serial-rxbuf-size" : 1024,
"drivers.uart-serial-txbuf-size" : 1024,
"update-client.bootloader-details" : "(0x08000000+30*1024)",
"update-client.application-details" : "(0x08000000+64*1024)",
"events.shared-stacksize" : 2048,
"idw0xx1.provide-default": true,
"idw0xx1.tx": "PA_9",
"idw0xx1.rx": "PA_10",
"target.macros_remove" : ["MBEDTLS_CONFIG_HW_SUPPORT"]
}
},
"config": {
"developer-mode": {
"help" : "Enable Developer mode to skip Factory enrollment",
"options" : [null, 1],
"value" : 1
},
"button-pinname": {
"help" : "PinName for button.",
"value" : "BUTTON1"
},
"led-pinname" : {
"help" : "PinName for led, which is attached to led blink resource.",
"value" : "LED_RED"
}
}
}