Skip to content

Commit

Permalink
[PIO CI] stm32 core seems broken
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Jul 11, 2021
1 parent 106e6ad commit 4e4fb10
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_arduino.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ jobs:
- examples/MQTT/mqtt_basic
- examples/MQTT/mqtt_basic_2
- examples/SimpleClient_Mesh
- examples/SLIP_Gateway
# these need RF24_TAP defined
# - examples/SLIP_InteractiveServer # also requires EEPROM.h
Expand All @@ -104,6 +103,8 @@ jobs:
# - examples/TAP/Getting_Started_SimpleServer
# - examples/TAP/Getting_Started_SimpleServer_Minimal

# other reasons we exclude the following examples
# - examples/SLIP_Gateway # hardcoded to use HardwareSerial
# - examples/TAP/InteractiveServer # specific to AVR boards
# - examples/InteractiveServer_Mesh_ESPWifi # needs ESP8266WiFi.h
libraries: |
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/build_platformIO.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ jobs:
- "examples/MQTT/mqtt_basic/mqtt_basic.ino"
- "examples/MQTT/mqtt_basic_2/mqtt_basic_2.ino"
- "examples/SimpleClient_Mesh/SimpleClient_Mesh.ino"
- "examples/SLIP_Gateway/SLIP_Gateway.ino"

# these need RF24_TAP defined
# - "examples/SLIP_InteractiveServer/SLIP_InteractiveServer.ino" # also requires EEPROM.h
Expand All @@ -93,15 +92,12 @@ jobs:
# - "examples/TAP/Getting_Started_SimpleServer/Getting_Started_SimpleServer.ino"
# - "examples/TAP/Getting_Started_SimpleServer_Minimal/Getting_Started_SimpleServer_Minimal.ino"

# other reasons we exclude the following examples
# - "examples/SLIP_Gateway/SLIP_Gateway.ino" # hardcoded to use HardwareSerial
# - "examples/TAP/InteractiveServer/InteractiveServer.ino" # specific to AVR boards
# - "examples/InteractiveServer_Mesh_ESPWifi/InteractiveServer_Mesh_ESPWifi.ino" # requires ESP8266WiFi.h
board:
- "teensy31"
- "teensy35"
- "teensy36"
- "teensy40"
- "teensy41"
- "teensylc"
- "tinypico"

steps:
- uses: actions/checkout@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ void loop() {

size_t size;

if (size = client.available() > 0) {
if ((size = client.available()) > 0) {
char c = client.read();
Serial.print(c);
counter++;
Expand Down
1 change: 0 additions & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"platforms": [
"atmelavr",
"atmelsam",
"teensy",
"atmelmegaavr",
"espressif32",
"espressif8266",
Expand Down

0 comments on commit 4e4fb10

Please sign in to comment.