Skip to content

Commit a8ac288

Browse files
committed
Merge branch 'release/v1.2.0'
2 parents b25cef1 + b81d28e commit a8ac288

File tree

35 files changed

+752
-328
lines changed

35 files changed

+752
-328
lines changed

.github/workflows/examples.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ jobs:
1010
os: [ubuntu-16.04, windows-latest, macos-latest]
1111
python-version: [2.7, 3.7]
1212
example:
13-
- "examples/mbed-blink"
14-
- "examples/mbed-rtos-ethernet"
13+
- "examples/mbed-rtos-blink-baremetal"
14+
- "examples/mbed-rtos-cellular"
15+
- "examples/mbed-rtos-ethernet-tls"
1516
- "examples/zephyr-blink"
1617
- "examples/zephyr-synchronization"
1718
exclude:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
*.pyc
2+
.piolibdeps
3+
.pio

examples/mbed-blink/src/main.cpp

Lines changed: 0 additions & 12 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

examples/mbed-blink/README.rst renamed to examples/mbed-rtos-blink-baremetal/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. Copyright 2020-present PlatformIO <contact@platformio.org>
1+
.. Copyright 2014-present PlatformIO <contact@platformio.org>
22
Licensed under the Apache License, Version 2.0 (the "License");
33
you may not use this file except in compliance with the License.
44
You may obtain a copy of the License at
@@ -20,7 +20,7 @@ How to build PlatformIO based project
2020
.. code-block:: bash
2121
2222
# Change directory to example
23-
> cd platform-nxpimxrt/examples/mbed-blink
23+
> cd platform-nxpimxrt/examples/mbed-blink-baremetal
2424
2525
# Build project
2626
> platformio run
File renamed without changes.
File renamed without changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"requires": ["bare-metal"],
3+
"target_overrides": {
4+
"*": {
5+
"target.c_lib": "small",
6+
"target.printf_lib": "minimal-printf",
7+
"platform.minimal-printf-enable-floating-point": false,
8+
"platform.stdio-minimal-console-only": true
9+
}
10+
}
11+
}
File renamed without changes.

0 commit comments

Comments
 (0)