Skip to content

Commit 340e3f8

Browse files
committed
Add offline skip/generate files
1 parent 31533af commit 340e3f8

File tree

45 files changed

+62
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+62
-20
lines changed

.github/workflows/release-caller-offline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,13 @@ jobs:
115115
wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.bin
116116
117117
build-rp2040:
118-
name: 🏗️RP2040
118+
name: 🏗️RP2040, RP2350
119119
runs-on: ubuntu-latest
120120
if: github.event.release.target_commitish == 'offline-mode' # Runs only if release is from offline-mode
121121
strategy:
122122
fail-fast: false
123123
matrix:
124-
arduino-platform: ["picow_rp2040_tinyusb", "picow_rp2350_tinyusb"]
124+
arduino-platform: ["pico_rp2040_tinyusb", "pico_rp2350_tinyusb"]
125125
steps:
126126
- uses: actions/setup-python@v5
127127
with:
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,24 @@
1-
// Adafruit IO WipperSnapper Beta
2-
//
3-
//
4-
// NOTE: This software is a BETA release and in active development.
5-
// Please report bugs or errors to https://github.com/adafruit/Adafruit_Wippersnapper_Arduino/issues
6-
//
1+
// Adafruit IO WipperSnapper
72
//
83
// Adafruit invests time and resources providing this open source code.
94
// Please support Adafruit and open source hardware by purchasing
105
// products from Adafruit!
116
//
12-
// Brent Rubell for Adafruit Industries, 2021-2022
7+
// Brent Rubell for Adafruit Industries, 2020-2025
138
//
149
// All text above must be included in any redistribution.
1510

16-
#include "Wippersnapper_Networking.h"
11+
#include "ws_adapters.h"
1712
ws_adapter_wifi wipper;
1813

19-
// Enable debug output for beta builds
20-
#define WS_DEBUG
14+
#define WS_DEBUG // Enable debug output!
2115

2216
void setup() {
23-
// Provisioning must occur prior to serial init.
24-
wipper.provision();
25-
2617
Serial.begin(115200);
27-
while (!Serial) delay(10);
28-
18+
wipper.provision();
2919
wipper.connect();
30-
3120
}
3221

3322
void loop() {
34-
//wipper.run();
23+
wipper.run();
3524
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)