Skip to content

Commit

Permalink
skip any example that includes avr/pgmspace
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Jan 14, 2021
1 parent 1c8c61f commit 022c797
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_arduino.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@ jobs:
- examples/helloworld_rx_advanced
- examples/helloworld_tx_advanced
- examples/helloworld_tx
- examples/Network_Ping
- examples/Network_Priority_RX
- examples/Network_Priority_TX
# - examples/Network_Ping
# - examples/Network_Ping_Sleep
libraries: |
- name: RF24
- source-path: ./
Expand Down
6 changes: 3 additions & 3 deletions examples/Network_Ping/Network_Ping.ino
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ void loop() {
break;
default:
Serial.print(F("*** WARNING *** Unknown message type "));
Serial.println(header.type);
network.read(header, 0, 0);
break;
Serial.println(header.type);
network.read(header, 0, 0);
break;
};
}

Expand Down

0 comments on commit 022c797

Please sign in to comment.