From 4c72d0ef4152b73102beecdbbc3807dc8cd22dff Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 22 Nov 2021 18:32:30 +0200 Subject: [PATCH 1/3] Convert README to markdown --- examples/arduino-ble-led/README.md | 21 ++++++++++++ examples/arduino-ble-led/README.rst | 32 ------------------ examples/arduino-blink/README.md | 21 ++++++++++++ examples/arduino-blink/README.rst | 32 ------------------ examples/arduino-internal-libs/README.md | 21 ++++++++++++ examples/arduino-internal-libs/README.rst | 32 ------------------ examples/mbed-ble-thermometer/README.md | 27 +++++++++++++++ examples/mbed-ble-thermometer/README.rst | 38 ---------------------- examples/mbed-blink/README.md | 27 +++++++++++++++ examples/mbed-blink/README.rst | 38 ---------------------- examples/mbed-events/README.md | 27 +++++++++++++++ examples/mbed-events/README.rst | 38 ---------------------- examples/mbed-serial/README.md | 27 +++++++++++++++ examples/mbed-serial/README.rst | 38 ---------------------- examples/zephyr-ble-eddystone/README.md | 27 +++++++++++++++ examples/zephyr-ble-eddystone/README.rst | 38 ---------------------- examples/zephyr-blink/README.md | 27 +++++++++++++++ examples/zephyr-blink/README.rst | 38 ---------------------- examples/zephyr-drivers-entropy/README.md | 27 +++++++++++++++ examples/zephyr-drivers-entropy/README.rst | 38 ---------------------- 20 files changed, 252 insertions(+), 362 deletions(-) create mode 100644 examples/arduino-ble-led/README.md delete mode 100644 examples/arduino-ble-led/README.rst create mode 100644 examples/arduino-blink/README.md delete mode 100644 examples/arduino-blink/README.rst create mode 100644 examples/arduino-internal-libs/README.md delete mode 100644 examples/arduino-internal-libs/README.rst create mode 100644 examples/mbed-ble-thermometer/README.md delete mode 100644 examples/mbed-ble-thermometer/README.rst create mode 100644 examples/mbed-blink/README.md delete mode 100644 examples/mbed-blink/README.rst create mode 100644 examples/mbed-events/README.md delete mode 100644 examples/mbed-events/README.rst create mode 100644 examples/mbed-serial/README.md delete mode 100644 examples/mbed-serial/README.rst create mode 100644 examples/zephyr-ble-eddystone/README.md delete mode 100644 examples/zephyr-ble-eddystone/README.rst create mode 100644 examples/zephyr-blink/README.md delete mode 100644 examples/zephyr-blink/README.rst create mode 100644 examples/zephyr-drivers-entropy/README.md delete mode 100644 examples/zephyr-drivers-entropy/README.rst diff --git a/examples/arduino-ble-led/README.md b/examples/arduino-ble-led/README.md new file mode 100644 index 0000000..5493f17 --- /dev/null +++ b/examples/arduino-ble-led/README.md @@ -0,0 +1,21 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/arduino-ble-led + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/arduino-ble-led/README.rst b/examples/arduino-ble-led/README.rst deleted file mode 100644 index 3ad559f..0000000 --- a/examples/arduino-ble-led/README.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/arduino-ble-led - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/arduino-blink/README.md b/examples/arduino-blink/README.md new file mode 100644 index 0000000..68a9b4d --- /dev/null +++ b/examples/arduino-blink/README.md @@ -0,0 +1,21 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/arduino-blink + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/arduino-blink/README.rst b/examples/arduino-blink/README.rst deleted file mode 100644 index 6012321..0000000 --- a/examples/arduino-blink/README.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/arduino-blink - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/arduino-internal-libs/README.md b/examples/arduino-internal-libs/README.md new file mode 100644 index 0000000..97bee15 --- /dev/null +++ b/examples/arduino-internal-libs/README.md @@ -0,0 +1,21 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/arduino-internal-libs + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/arduino-internal-libs/README.rst b/examples/arduino-internal-libs/README.rst deleted file mode 100644 index d5eb046..0000000 --- a/examples/arduino-internal-libs/README.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/arduino-internal-libs - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/mbed-ble-thermometer/README.md b/examples/mbed-ble-thermometer/README.md new file mode 100644 index 0000000..fe79feb --- /dev/null +++ b/examples/mbed-ble-thermometer/README.md @@ -0,0 +1,27 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/mbed-ble-thermometer + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Build specific environment +$ pio run -e nrf51_dk + +# Upload firmware for the specific environment +$ pio run -e nrf51_dk --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/mbed-ble-thermometer/README.rst b/examples/mbed-ble-thermometer/README.rst deleted file mode 100644 index e62261a..0000000 --- a/examples/mbed-ble-thermometer/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/mbed-ble-thermometer - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Build specific environment - > platformio run -e nrf51_dk - - # Upload firmware for the specific environment - > platformio run -e nrf51_dk --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/mbed-blink/README.md b/examples/mbed-blink/README.md new file mode 100644 index 0000000..042bf3a --- /dev/null +++ b/examples/mbed-blink/README.md @@ -0,0 +1,27 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/mbed-blink + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Build specific environment +$ pio run -e nrf51_mkit + +# Upload firmware for the specific environment +$ pio run -e nrf51_mkit --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/mbed-blink/README.rst b/examples/mbed-blink/README.rst deleted file mode 100644 index af48619..0000000 --- a/examples/mbed-blink/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/mbed-blink - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Build specific environment - > platformio run -e nrf51_mkit - - # Upload firmware for the specific environment - > platformio run -e nrf51_mkit --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/mbed-events/README.md b/examples/mbed-events/README.md new file mode 100644 index 0000000..7e02cd9 --- /dev/null +++ b/examples/mbed-events/README.md @@ -0,0 +1,27 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/mbed-events + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Build specific environment +$ pio run -e nrf51_mkit + +# Upload firmware for the specific environment +$ pio run -e nrf51_mkit --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/mbed-events/README.rst b/examples/mbed-events/README.rst deleted file mode 100644 index e237e8a..0000000 --- a/examples/mbed-events/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/mbed-events - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Build specific environment - > platformio run -e nrf51_mkit - - # Upload firmware for the specific environment - > platformio run -e nrf51_mkit --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/mbed-serial/README.md b/examples/mbed-serial/README.md new file mode 100644 index 0000000..f8ad650 --- /dev/null +++ b/examples/mbed-serial/README.md @@ -0,0 +1,27 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/mbed-serial + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Build specific environment +$ pio run -e nrf51_mkit + +# Upload firmware for the specific environment +$ pio run -e nrf51_mkit --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/mbed-serial/README.rst b/examples/mbed-serial/README.rst deleted file mode 100644 index 3616165..0000000 --- a/examples/mbed-serial/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/mbed-serial - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Build specific environment - > platformio run -e nrf51_mkit - - # Upload firmware for the specific environment - > platformio run -e nrf51_mkit --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/zephyr-ble-eddystone/README.md b/examples/zephyr-ble-eddystone/README.md new file mode 100644 index 0000000..618e576 --- /dev/null +++ b/examples/zephyr-ble-eddystone/README.md @@ -0,0 +1,27 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/zephyr-ble-eddystone + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Build specific environment +$ pio run -e nrf51_dongle + +# Upload firmware for the specific environment +$ pio run -e nrf51_dongle --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/zephyr-ble-eddystone/README.rst b/examples/zephyr-ble-eddystone/README.rst deleted file mode 100644 index d15a3fd..0000000 --- a/examples/zephyr-ble-eddystone/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/zephyr-ble-eddystone - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Build specific environment - > platformio run -e nrf51_dongle - - # Upload firmware for the specific environment - > platformio run -e nrf51_dongle --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/zephyr-blink/README.md b/examples/zephyr-blink/README.md new file mode 100644 index 0000000..96f6a5c --- /dev/null +++ b/examples/zephyr-blink/README.md @@ -0,0 +1,27 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/zephyr-blink + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Build specific environment +$ pio run -e nrf51_dongle + +# Upload firmware for the specific environment +$ pio run -e nrf51_dongle --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/zephyr-blink/README.rst b/examples/zephyr-blink/README.rst deleted file mode 100644 index 431e8fd..0000000 --- a/examples/zephyr-blink/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/zephyr-blink - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Build specific environment - > platformio run -e nrf51_dongle - - # Upload firmware for the specific environment - > platformio run -e nrf51_dongle --target upload - - # Clean build files - > platformio run --target clean diff --git a/examples/zephyr-drivers-entropy/README.md b/examples/zephyr-drivers-entropy/README.md new file mode 100644 index 0000000..9a19b5e --- /dev/null +++ b/examples/zephyr-drivers-entropy/README.md @@ -0,0 +1,27 @@ +How to build PlatformIO based project +===================================== + +1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) +2. Download [development platform with examples](https://github.com/platformio/platform-nordicnrf51/archive/develop.zip) +3. Extract ZIP archive +4. Run these commands: + +```shell +# Change directory to example +$ cd platform-nordicnrf51/examples/zephyr-drivers-entropy + +# Build project +$ pio run + +# Upload firmware +$ pio run --target upload + +# Build specific environment +$ pio run -e nrf51_dongle + +# Upload firmware for the specific environment +$ pio run -e nrf51_dongle --target upload + +# Clean build files +$ pio run --target clean +``` diff --git a/examples/zephyr-drivers-entropy/README.rst b/examples/zephyr-drivers-entropy/README.rst deleted file mode 100644 index 238fba2..0000000 --- a/examples/zephyr-drivers-entropy/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. Copyright 2014-present PlatformIO - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -How to build PlatformIO based project -===================================== - -1. `Install PlatformIO Core `_ -2. Download `development platform with examples `_ -3. Extract ZIP archive -4. Run these commands: - -.. code-block:: bash - - # Change directory to example - > cd platform-nordicnrf51/examples/zephyr-drivers-entropy - - # Build project - > platformio run - - # Upload firmware - > platformio run --target upload - - # Build specific environment - > platformio run -e nrf51_dongle - - # Upload firmware for the specific environment - > platformio run -e nrf51_dongle --target upload - - # Clean build files - > platformio run --target clean From 049c062e98125dd98e0b58dea497b7e360ca3982 Mon Sep 17 00:00:00 2001 From: valeros Date: Thu, 13 Jan 2022 13:53:40 +0200 Subject: [PATCH 2/3] Update Zephyr to the latest v2.7.1 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 7afa679..2391e6d 100644 --- a/platform.json +++ b/platform.json @@ -58,7 +58,7 @@ "type": "framework", "optional": true, "owner": "platformio", - "version": "~2.20700.0" + "version": "~2.20701.0" }, "tool-sreccat": { "owner": "platformio", From eb2696ef77f947b206a6e5f54a23d4fca6f3ee37 Mon Sep 17 00:00:00 2001 From: valeros Date: Fri, 28 Jan 2022 13:40:37 +0200 Subject: [PATCH 3/3] Bump version to 8.1.0 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index 2391e6d..1526c4b 100644 --- a/platform.json +++ b/platform.json @@ -18,7 +18,7 @@ "type": "git", "url": "https://github.com/platformio/platform-nordicnrf51.git" }, - "version": "8.0.0", + "version": "8.1.0", "frameworks": { "arduino": { "package": "framework-arduinonordicnrf5",