Skip to content

Mbed 6.4.0+rebase #88

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
variants: simplify mbed_app.json
  • Loading branch information
facchinm committed Feb 5, 2021
commit 13d19440c6a6dc93c49b2e6fedb2be31c07925f9
6 changes: 2 additions & 4 deletions variants/ARDUINO_NANO33BLE/conf/mbed_app.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
{
"macros": [
"MBED_HEAP_STATS_ENABLED=1",
"MBED_STACK_STATS_ENABLED=1",
"MBED_MEM_TRACING_ENABLED=1",
"NRFX_GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS=8"
],
"target_overrides": {
"*": {
"target.printf_lib": "std",
"platform.stdio-buffered-serial": true,
"platform.stdio-buffered-serial": false,
"platform.stdio-baud-rate": 115200,
"platform.default-serial-baud-rate": 115200,
"platform.callback-nontrivial": true,
"rtos.main-thread-stack-size": 32768,
"cordio.max-connections": 5,
"platform.all-stats-enabled": true,
"target.mbed_app_start": "0x10000"
}
}
Expand Down
5 changes: 2 additions & 3 deletions variants/PORTENTA_H7_M4/conf/mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@
"target_overrides": {
"*": {
"target.printf_lib": "std",
"platform.stdio-buffered-serial": false,
"target.usb_speed": "USE_USB_OTG_FS",
"platform.stdio-baud-rate": 115200,
"platform.default-serial-baud-rate": 115200,
"platform.callback-nontrivial": true,
"platform.all-stats-enabled": true,
"rtos.main-thread-stack-size": 32768,
"cordio.max-connections": 5,
"target.macros_add": [
"MBED_HEAP_STATS_ENABLED=1",
"MBED_STACK_STATS_ENABLED=1",
"MBED_MEM_TRACING_ENABLED=1",
"METAL_INTERNAL",
"VIRTIO_SLAVE_ONLY",
"NO_ATOMIC_64_SUPPORT",
Expand Down
7 changes: 3 additions & 4 deletions variants/PORTENTA_H7_M7/conf/mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
"target_overrides": {
"*": {
"target.printf_lib": "std",
"platform.stdio-buffered-serial": true,
"platform.stdio-buffered-serial": false,
"platform.stdio-baud-rate": 115200,
"platform.default-serial-baud-rate": 115200,
"platform.callback-nontrivial": true,
"platform.all-stats-enabled": true,
"platform.memory-tracing-enabled": true,
"rtos.main-thread-stack-size": 32768,
"cordio.max-connections": 5,
"target.mbed_app_start": "0x8040000",
"target.macros_add": [
"MBED_HEAP_STATS_ENABLED=1",
"MBED_STACK_STATS_ENABLED=1",
"MBED_MEM_TRACING_ENABLED=1",
"METAL_INTERNAL",
"VIRTIO_MASTER_ONLY",
"NO_ATOMIC_64_SUPPORT",
Expand Down