forked from platformio/platformio-core
Update links to the new repo with Project Examples
This commit is contained in:
17
.travis.yml
17
.travis.yml
@@ -1,21 +1,22 @@
|
|||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
"2.7"
|
- "2.7"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
TOX_ENV=docs
|
- TOX_ENV=docs
|
||||||
TOX_ENV=lint
|
- TOX_ENV=lint
|
||||||
TOX_ENV=py26
|
- TOX_ENV=py26
|
||||||
TOX_ENV=py27
|
- TOX_ENV=py27
|
||||||
|
|
||||||
install:
|
install:
|
||||||
pip install -U pip setuptools tox
|
- git submodule update --init --recursive
|
||||||
|
- pip install -U pip setuptools tox
|
||||||
|
|
||||||
script:
|
script:
|
||||||
tox -e $TOX_ENV
|
- tox -e $TOX_ENV
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
slack:
|
slack:
|
||||||
secure: uEU56hHACLxq6iRRZ0JeAl/MPADqQWMZZAsZB9IOnXaRUd0Pa6lT2CicJXhVlsEEbNRqR2u5LbcQ4R0nvAKPjYgglDlDet4RfhP+YIqLX2v2dv3B5q8cITsKMUUediv4fybdO/nmvQSImq5nqRQQsXKAwTAJZooIwS3F5Dsg+eE=
|
secure: ksQmXOP5NVsf8IgoDuxD68Q/YNwDpZuwq0V29h2dxYCr38oYdAkq/Os4LSCs0X6P0cQFf6nC1hM/d+cAvU+SmzcHGxEceHNEGCg3/TAj+68KIwooPU93Lfq1zwdfteZWxANjKlCQy4+wZliHLhL8fvCYgfJww/6qKmqSYleBNM=
|
||||||
on_failure: always
|
on_failure: always
|
||||||
on_success: change
|
on_success: change
|
||||||
|
@@ -838,9 +838,9 @@ PlatformIO 0.0
|
|||||||
* Fixed "*OSError: [Errno 2] No such file or directory*" within
|
* Fixed "*OSError: [Errno 2] No such file or directory*" within
|
||||||
`platformio run <http://docs.platformio.org/en/latest/userguide/cmd_run.html>`__
|
`platformio run <http://docs.platformio.org/en/latest/userguide/cmd_run.html>`__
|
||||||
command when PlatformIO isn't installed properly
|
command when PlatformIO isn't installed properly
|
||||||
* Fixed example for `Eclipse IDE with Tiva board <https://github.com/platformio/platformio/tree/develop/examples/ide/eclipse>`_
|
* Fixed example for `Eclipse IDE with Tiva board <https://github.com/platformio/platformio-examples/tree/develop/ide/eclipse>`_
|
||||||
(`issue #32 <https://github.com/platformio/platformio/pull/32>`_)
|
(`issue #32 <https://github.com/platformio/platformio/pull/32>`_)
|
||||||
* Upgraded `Eclipse Project Examples <https://github.com/platformio/platformio/tree/develop/examples/ide/eclipse>`_
|
* Upgraded `Eclipse Project Examples <https://github.com/platformio/platformio-examples/tree/develop/ide/eclipse>`_
|
||||||
to latest *Luna* and *PlatformIO* releases
|
to latest *Luna* and *PlatformIO* releases
|
||||||
|
|
||||||
0.9.0 (2014-12-01)
|
0.9.0 (2014-12-01)
|
||||||
@@ -908,7 +908,7 @@ PlatformIO 0.0
|
|||||||
* Disabled default warning flag "-Wall"
|
* Disabled default warning flag "-Wall"
|
||||||
* Added auto-conversation from \*.ino to valid \*.cpp for Arduino/Energia
|
* Added auto-conversation from \*.ino to valid \*.cpp for Arduino/Energia
|
||||||
frameworks (`issue #7 <https://github.com/platformio/platformio/issues/7>`_)
|
frameworks (`issue #7 <https://github.com/platformio/platformio/issues/7>`_)
|
||||||
* Added `Arduino example <https://github.com/platformio/platformio/tree/develop/examples/>`_
|
* Added `Arduino example <https://github.com/platformio/platformio-examples/tree/develop/>`_
|
||||||
with external library (*Adafruit CC3000*)
|
with external library (*Adafruit CC3000*)
|
||||||
* Implemented `platformio upgrade <http://docs.platformio.org/en/latest/userguide/cmd_upgrade.html>`_
|
* Implemented `platformio upgrade <http://docs.platformio.org/en/latest/userguide/cmd_upgrade.html>`_
|
||||||
command and "auto-check" for the latest
|
command and "auto-check" for the latest
|
||||||
@@ -957,7 +957,7 @@ PlatformIO 0.0
|
|||||||
|
|
||||||
* Resolved `issue #1 "Build referred libraries" <https://github.com/platformio/platformio/issues/1>`_
|
* Resolved `issue #1 "Build referred libraries" <https://github.com/platformio/platformio/issues/1>`_
|
||||||
* Renamed project's "libs" directory to "lib"
|
* Renamed project's "libs" directory to "lib"
|
||||||
* Added `arduino-internal-library <https://github.com/platformio/platformio/tree/develop/examples/>`_ example
|
* Added `arduino-internal-library <https://github.com/platformio/platformio-examples/tree/develop/>`_ example
|
||||||
* Changed to beta status
|
* Changed to beta status
|
||||||
|
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@ machine:
|
|||||||
|
|
||||||
checkout:
|
checkout:
|
||||||
post:
|
post:
|
||||||
- git submodule update --init
|
- git submodule update --init --recursive
|
||||||
- pip install -U pip setuptools virtualenv
|
- pip install -U pip setuptools virtualenv
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@@ -29,7 +29,7 @@ Preconfigured demo projects are located in `PlatformIO GitHub <https://github.co
|
|||||||
Used in demo
|
Used in demo
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
1. Source code of `Wiring Blink Example <https://github.com/platformio/platformio/tree/develop/examples/wiring-blink>`_
|
1. Source code of `Wiring Blink Example <https://github.com/platformio/platformio-examples/tree/develop/wiring-blink>`_
|
||||||
2. :ref:`cmd_run` command
|
2. :ref:`cmd_run` command
|
||||||
3. :ref:`platformio run -t upload <cmd_run>` command.
|
3. :ref:`platformio run -t upload <cmd_run>` command.
|
||||||
|
|
||||||
|
@@ -20,6 +20,6 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for CMSIS framework <https://github.com/platformio/platformio/tree/develop/examples/stm32>`_.
|
`Examples for CMSIS framework <https://github.com/platformio/platformio-examples/tree/develop/stm32>`_.
|
||||||
|
|
||||||
* `Blink <https://github.com/platformio/platformio/tree/develop/examples/stm32/stm32-cmsis-blink>`_
|
* `Blink <https://github.com/platformio/platformio-examples/tree/develop/stm32/stm32-cmsis-blink>`_
|
||||||
|
@@ -13,6 +13,6 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for libOpenCM3 framework <https://github.com/platformio/platformio/tree/develop/examples/stm32>`_.
|
`Examples for libOpenCM3 framework <https://github.com/platformio/platformio-examples/tree/develop/stm32>`_.
|
||||||
|
|
||||||
* `Blink <https://github.com/platformio/platformio/tree/develop/examples/stm32/stm32-opencm3-blink>`_
|
* `Blink <https://github.com/platformio/platformio-examples/tree/develop/stm32/stm32-opencm3-blink>`_
|
||||||
|
@@ -23,10 +23,10 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for MBED framework <https://github.com/platformio/platformio/tree/develop/examples/mbed>`_.
|
`Examples for MBED framework <https://github.com/platformio/platformio-examples/tree/develop/mbed>`_.
|
||||||
|
|
||||||
* `Blink <https://github.com/platformio/platformio/tree/develop/examples/mbed/mbed-blink>`_
|
* `Blink <https://github.com/platformio/platformio-examples/tree/develop/mbed/mbed-blink>`_
|
||||||
* `DSP <https://github.com/platformio/platformio/tree/develop/examples/mbed/mbed-dsp>`_
|
* `DSP <https://github.com/platformio/platformio-examples/tree/develop/mbed/mbed-dsp>`_
|
||||||
* `HTTP Client <https://github.com/platformio/platformio/tree/develop/examples/mbed/mbed-http-client>`_
|
* `HTTP Client <https://github.com/platformio/platformio-examples/tree/develop/mbed/mbed-http-client>`_
|
||||||
* `RTOS <https://github.com/platformio/platformio/tree/develop/examples/mbed/mbed-rtos>`_
|
* `RTOS <https://github.com/platformio/platformio-examples/tree/develop/mbed/mbed-rtos>`_
|
||||||
* `Serial <https://github.com/platformio/platformio/tree/develop/examples/mbed/mbed-serial>`_
|
* `Serial <https://github.com/platformio/platformio-examples/tree/develop/mbed/mbed-serial>`_
|
||||||
|
@@ -13,6 +13,6 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for SPL framework <https://github.com/platformio/platformio/tree/develop/examples/stm32>`_.
|
`Examples for SPL framework <https://github.com/platformio/platformio-examples/tree/develop/stm32>`_.
|
||||||
|
|
||||||
* `Blink <https://github.com/platformio/platformio/tree/develop/examples/stm32/stm32-spl-blink>`_
|
* `Blink <https://github.com/platformio/platformio-examples/tree/develop/stm32/stm32-spl-blink>`_
|
||||||
|
@@ -13,7 +13,7 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for WiringPi framework <https://github.com/platformio/platformio/tree/develop/examples/raspberrypi>`_.
|
`Examples for WiringPi framework <https://github.com/platformio/platformio-examples/tree/develop/raspberrypi>`_.
|
||||||
|
|
||||||
* `Blink <https://github.com/platformio/platformio/tree/develop/examples/raspberrypi/wiringpi-blink>`_
|
* `Blink <https://github.com/platformio/platformio-examples/tree/develop/raspberrypi/wiringpi-blink>`_
|
||||||
* `Serial <https://github.com/platformio/platformio/tree/develop/examples/raspberrypi/wiringpi-serial>`_
|
* `Serial <https://github.com/platformio/platformio-examples/tree/develop/raspberrypi/wiringpi-serial>`_
|
||||||
|
@@ -73,7 +73,7 @@ the screenshot below):
|
|||||||
(will be created in project directory after initialization).
|
(will be created in project directory after initialization).
|
||||||
|
|
||||||
``*.ino`` file isn't acceptable for ``add_executable`` command. You should
|
``*.ino`` file isn't acceptable for ``add_executable`` command. You should
|
||||||
convert it manually to ``*.cpp``. See `project example <https://github.com/platformio/platformio/tree/develop/examples/ide/clion>`_.
|
convert it manually to ``*.cpp``. See `project example <https://github.com/platformio/platformio-examples/tree/develop/ide/clion>`_.
|
||||||
|
|
||||||
More info `CLion issue #CPP-3977 <https://youtrack.jetbrains.com/issue/CPP-3977>`_.
|
More info `CLion issue #CPP-3977 <https://youtrack.jetbrains.com/issue/CPP-3977>`_.
|
||||||
Active discussion is located in
|
Active discussion is located in
|
||||||
@@ -94,4 +94,4 @@ Examples
|
|||||||
"Blink" Project
|
"Blink" Project
|
||||||
^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Source code of `CLion "Blink" Project <https://github.com/platformio/platformio/tree/develop/examples/ide/clion>`_.
|
Source code of `CLion "Blink" Project <https://github.com/platformio/platformio-examples/tree/develop/ide/clion>`_.
|
||||||
|
@@ -86,4 +86,4 @@ Examples
|
|||||||
"Blink" Project
|
"Blink" Project
|
||||||
^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Source code of `Eclipse "Blink" Project <https://github.com/platformio/platformio/tree/develop/examples/ide/eclipse>`_.
|
Source code of `Eclipse "Blink" Project <https://github.com/platformio/platformio-examples/tree/develop/ide/eclipse>`_.
|
||||||
|
@@ -193,4 +193,4 @@ Examples
|
|||||||
"Blink" Project
|
"Blink" Project
|
||||||
^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Source code of `Qt Creator "Blink" Project <https://github.com/platformio/platformio/tree/develop/examples/ide/qtcreator>`_.
|
Source code of `Qt Creator "Blink" Project <https://github.com/platformio/platformio-examples/tree/develop/ide/qtcreator>`_.
|
||||||
|
@@ -192,4 +192,4 @@ Examples
|
|||||||
"Blink" Project
|
"Blink" Project
|
||||||
^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Source code of `Sublime Text "Blink" Project <https://github.com/platformio/platformio/tree/develop/examples/ide/sublimetext>`_.
|
Source code of `Sublime Text "Blink" Project <https://github.com/platformio/platformio-examples/tree/develop/ide/sublimetext>`_.
|
||||||
|
@@ -153,7 +153,7 @@ Examples
|
|||||||
"Blink" Project
|
"Blink" Project
|
||||||
^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Source code of `Visual Studio "Blink" Project <https://github.com/platformio/platformio/tree/develop/examples/ide/visualstudio>`_.
|
Source code of `Visual Studio "Blink" Project <https://github.com/platformio/platformio-examples/tree/develop/ide/visualstudio>`_.
|
||||||
|
|
||||||
Known issues
|
Known issues
|
||||||
------------
|
------------
|
||||||
|
@@ -112,13 +112,13 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for Atmel AVR platform <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino>`_.
|
`Examples for Atmel AVR platform <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino>`_.
|
||||||
|
|
||||||
* `Wiring Blink <https://github.com/platformio/platformio/tree/develop/examples/wiring-blink>`_
|
* `Wiring Blink <https://github.com/platformio/platformio-examples/tree/develop/wiring-blink>`_
|
||||||
* `Arduino with external libraries <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/arduino-external-libs>`_
|
* `Arduino with external libraries <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/arduino-external-libs>`_
|
||||||
* `Arduino with internal libraries <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/arduino-internal-libs>`_
|
* `Arduino with internal libraries <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/arduino-internal-libs>`_
|
||||||
* `Project uses source file name for "src" directory (Arduino project structure) <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/arduino-own-src_dir>`_
|
* `Project uses source file name for "src" directory (Arduino project structure) <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/arduino-own-src_dir>`_
|
||||||
* `Atmel AVR Native blink <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/atmelavr-native-blink>`_
|
* `Atmel AVR Native blink <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/atmelavr-native-blink>`_
|
||||||
* `Digitstump Mouse <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/digitstump-mouse>`_
|
* `Digitstump Mouse <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/digitstump-mouse>`_
|
||||||
* `Engduino magnetometer <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/engduino-magnetometer>`_
|
* `Engduino magnetometer <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/engduino-magnetometer>`_
|
||||||
* `PanStamp blink <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/panstamp-blink>`_
|
* `PanStamp blink <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/panstamp-blink>`_
|
||||||
|
@@ -253,8 +253,8 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for Espressif platform <https://github.com/platformio/platformio/tree/develop/examples/espressif>`_.
|
`Examples for Espressif platform <https://github.com/platformio/platformio-examples/tree/develop/espressif>`_.
|
||||||
|
|
||||||
* `Native SDK <https://github.com/platformio/platformio/tree/develop/examples/espressif/esp8266-native>`_
|
* `Native SDK <https://github.com/platformio/platformio-examples/tree/develop/espressif/esp8266-native>`_
|
||||||
* `WebServer <https://github.com/platformio/platformio/tree/develop/examples/espressif/esp8266-webserver>`_
|
* `WebServer <https://github.com/platformio/platformio-examples/tree/develop/espressif/esp8266-webserver>`_
|
||||||
* `WiFiScan <https://github.com/platformio/platformio/tree/develop/examples/espressif/esp8266-wifiscan>`_
|
* `WiFiScan <https://github.com/platformio/platformio-examples/tree/develop/espressif/esp8266-wifiscan>`_
|
||||||
|
@@ -13,6 +13,6 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for Nordic nRF51 platform <https://github.com/platformio/platformio/tree/develop/examples/nordicnrf51>`_.
|
`Examples for Nordic nRF51 platform <https://github.com/platformio/platformio-examples/tree/develop/nordicnrf51>`_.
|
||||||
|
|
||||||
* `RFduino iBeacon <https://github.com/platformio/platformio/tree/develop/examples/nordicnrf51/rfduino-ibeacon>`_
|
* `RFduino iBeacon <https://github.com/platformio/platformio-examples/tree/develop/nordicnrf51/rfduino-ibeacon>`_
|
||||||
|
@@ -22,8 +22,8 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for ST STM32 platform <https://github.com/platformio/platformio/tree/develop/examples/stm32>`_.
|
`Examples for ST STM32 platform <https://github.com/platformio/platformio-examples/tree/develop/stm32>`_.
|
||||||
|
|
||||||
* `CMSIS Blink <https://github.com/platformio/platformio/tree/develop/examples/stm32/stm32-cmsis-blink>`_
|
* `CMSIS Blink <https://github.com/platformio/platformio-examples/tree/develop/stm32/stm32-cmsis-blink>`_
|
||||||
* `libOpenCM3 Blink <https://github.com/platformio/platformio/tree/develop/examples/stm32/stm32-opencm3-blink>`_
|
* `libOpenCM3 Blink <https://github.com/platformio/platformio-examples/tree/develop/stm32/stm32-opencm3-blink>`_
|
||||||
* `SPL Blink <https://github.com/platformio/platformio/tree/develop/examples/stm32/stm32-spl-blink>`_
|
* `SPL Blink <https://github.com/platformio/platformio-examples/tree/develop/stm32/stm32-spl-blink>`_
|
||||||
|
@@ -13,8 +13,8 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for Teensy platform <https://github.com/platformio/platformio/tree/develop/examples/teensy>`_.
|
`Examples for Teensy platform <https://github.com/platformio/platformio-examples/tree/develop/teensy>`_.
|
||||||
|
|
||||||
* `Wiring Blink <https://github.com/platformio/platformio/tree/develop/examples/wiring-blink>`_
|
* `Wiring Blink <https://github.com/platformio/platformio-examples/tree/develop/wiring-blink>`_
|
||||||
* `HID Mouse <https://github.com/platformio/platformio/tree/develop/examples/teensy/teensy-hid-usb-mouse>`_
|
* `HID Mouse <https://github.com/platformio/platformio-examples/tree/develop/teensy/teensy-hid-usb-mouse>`_
|
||||||
* `Chat Server <https://github.com/platformio/platformio/tree/develop/examples/teensy/teensy-internal-libs>`_
|
* `Chat Server <https://github.com/platformio/platformio-examples/tree/develop/teensy/teensy-internal-libs>`_
|
||||||
|
@@ -20,9 +20,9 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for TI MSP430 platform <https://github.com/platformio/platformio/tree/develop/examples/timsp430>`_.
|
`Examples for TI MSP430 platform <https://github.com/platformio/platformio-examples/tree/develop/timsp430>`_.
|
||||||
|
|
||||||
* `Energia blink <https://github.com/platformio/platformio/tree/develop/examples/timsp430/timsp430-energia-blink>`_
|
* `Energia blink <https://github.com/platformio/platformio-examples/tree/develop/timsp430/timsp430-energia-blink>`_
|
||||||
* `Native blink <https://github.com/platformio/platformio/tree/develop/examples/timsp430/timsp430-native-blink>`_
|
* `Native blink <https://github.com/platformio/platformio-examples/tree/develop/timsp430/timsp430-native-blink>`_
|
||||||
* `Wiring Blink <https://github.com/platformio/platformio/tree/develop/examples/wiring-blink>`_
|
* `Wiring Blink <https://github.com/platformio/platformio-examples/tree/develop/wiring-blink>`_
|
||||||
* `PanStamp blink <https://github.com/platformio/platformio/tree/develop/examples/timsp430/panstamp-blink>`_
|
* `PanStamp blink <https://github.com/platformio/platformio-examples/tree/develop/timsp430/panstamp-blink>`_
|
||||||
|
@@ -20,8 +20,8 @@ Examples
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
All project examples are located in PlatformIO repository
|
All project examples are located in PlatformIO repository
|
||||||
`Examples for TI TIVA platform <https://github.com/platformio/platformio/tree/develop/examples/titiva>`_.
|
`Examples for TI TIVA platform <https://github.com/platformio/platformio-examples/tree/develop/titiva>`_.
|
||||||
|
|
||||||
* `Energia blink <https://github.com/platformio/platformio/tree/develop/examples/titiva/titiva-energia-blink>`_
|
* `Energia blink <https://github.com/platformio/platformio-examples/tree/develop/titiva/titiva-energia-blink>`_
|
||||||
* `Native blink <https://github.com/platformio/platformio/tree/develop/examples/titiva/titiva-native-blink>`_
|
* `Native blink <https://github.com/platformio/platformio-examples/tree/develop/titiva/titiva-native-blink>`_
|
||||||
* `OpenCM3 Blink <https://github.com/platformio/platformio/tree/develop/examples/titiva/titiva-opencm3-blink>`_
|
* `OpenCM3 Blink <https://github.com/platformio/platformio-examples/tree/develop/titiva/titiva-opencm3-blink>`_
|
||||||
|
@@ -90,7 +90,7 @@ This option can be overridden by global environment variable
|
|||||||
.. note::
|
.. note::
|
||||||
This option is useful for people who migrate from Arduino/Energia IDEs where
|
This option is useful for people who migrate from Arduino/Energia IDEs where
|
||||||
source directory should have the same name like the main source file.
|
source directory should have the same name like the main source file.
|
||||||
See `example <https://github.com/platformio/platformio/tree/develop/examples/atmelavr-and-arduino/arduino-own-src_dir>`__ project with own source directory.
|
See `example <https://github.com/platformio/platformio-examples/tree/develop/atmelavr-and-arduino/arduino-own-src_dir>`__ project with own source directory.
|
||||||
|
|
||||||
.. _projectconf_pio_envs_dir:
|
.. _projectconf_pio_envs_dir:
|
||||||
|
|
||||||
|
@@ -93,7 +93,7 @@ or :ref:`projectconf_pio_src_dir` (project structure) have been modified.
|
|||||||
Examples
|
Examples
|
||||||
--------
|
--------
|
||||||
|
|
||||||
1. Process `Wiring Blink Example <https://github.com/platformio/platformio/tree/develop/examples/wiring-blink>`_
|
1. Process `Wiring Blink Example <https://github.com/platformio/platformio-examples/tree/develop/wiring-blink>`_
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user