File tree 3 files changed +47
-2
lines changed
3 files changed +47
-2
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.0
2
2
jobs :
3
- build :
3
+ rtems :
4
4
docker :
5
5
- image : sergiusthebest/rtems-arm-rasberrypi-ci:latest
6
6
steps :
7
7
- checkout
8
- - run : cmake -H. -Bbuild -DCMAKE_TOOLCHAIN_FILE=$CMAKE_TOOLCHAIN_FILE && cd build && make -j
8
+ - run : cmake -H. -Bbuild -DCMAKE_TOOLCHAIN_FILE=$CMAKE_TOOLCHAIN_FILE && cd build && make -j
9
+ platformio :
10
+ docker :
11
+ - image : sergiusthebest/platformio-ci:latest
12
+ steps :
13
+ - checkout
14
+ - run : pio run -d samples/Arduino
15
+ workflows :
16
+ version : 2
17
+ workflow :
18
+ jobs :
19
+ - rtems
20
+ - platformio
Original file line number Diff line number Diff line change
1
+ ; PlatformIO Project Configuration File
2
+ ;
3
+ ; Build options: build flags, source filter
4
+ ; Upload options: custom upload port, speed and extra flags
5
+ ; Library options: dependencies, extra library storages
6
+ ; Advanced options: extra scripting
7
+ ;
8
+ ; Please visit documentation for the other options and examples
9
+ ; https://docs.platformio.org/page/projectconf.html
10
+
11
+ [platformio]
12
+ include_dir = ../../include
13
+
14
+ [env:esp8266]
15
+ platform = espressif8266
16
+ board = nodemcuv2
17
+ framework = arduino
18
+
19
+ [env:esp32]
20
+ platform = espressif32
21
+ board = esp32dev
22
+ framework = arduino
Original file line number Diff line number Diff line change
1
+ #include < Arduino.h>
2
+ #include < plog/Log.h>
3
+
4
+ void setup ()
5
+ {
6
+ }
7
+
8
+ void loop ()
9
+ {
10
+ delay (1000 ); // Wait for a second
11
+ }
You can’t perform that action at this time.
0 commit comments