File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 192
192
#define USE_TINYUSB
193
193
#define USE_STATUS_LED
194
194
#define STATUS_LED_PIN 32
195
+ #elif defined(ARDUINO_RASPBERRY_PI_PICO_2W )
196
+ #define BOARD_ID "rpi-pico-2w"
197
+ #define USE_TINYUSB
198
+ #define USE_STATUS_LED
199
+ #define STATUS_LED_PIN 32
195
200
#elif defined(ARDUINO_RASPBERRY_PI_PICO )
196
201
#define BOARD_ID "rpi-pico"
197
202
#define USE_TINYUSB
Original file line number Diff line number Diff line change 74
74
#include < map>
75
75
#include < string>
76
76
#include < vector>
77
- #ifdef ARDUINO_ARCH_SAMD
78
77
#include < algorithm>
79
- #endif
80
78
81
79
// Nanopb dependencies
82
80
#include < nanopb/pb_common.h>
Original file line number Diff line number Diff line change 17
17
#ifndef WS_WIFI_PICO_H
18
18
#define WS_WIFI_PICO_H
19
19
20
- #ifdef ARDUINO_RASPBERRY_PI_PICO_W
20
+ #if defined( ARDUINO_RASPBERRY_PI_PICO_W) || defined (ARDUINO_RASPBERRY_PI_PICO_2W)
21
21
22
22
#define PICO_CONNECT_TIMEOUT_MS 20000 /* !< Connection timeout (in ms) */
23
23
#define PICO_CONNECT_RETRY_DELAY_MS 200 /* !< delay time between retries. */
Original file line number Diff line number Diff line change 30
30
defined(ARDUINO_RASPBERRY_PI_PICO) || \
31
31
defined(ARDUINO_RASPBERRY_PI_PICO_2) || \
32
32
defined(ARDUINO_ADAFRUIT_FEATHER_RP2040_ADALOGGER) || \
33
- defined(ARDUINO_ADAFRUIT_METRO_RP2350)
33
+ defined(ARDUINO_ADAFRUIT_METRO_RP2350) || \
34
+ defined(ARDUINO_RASPBERRY_PI_PICO_2W)
34
35
#include " Wippersnapper_FS.h"
35
36
// On-board external flash (QSPI or SPI) macros should already
36
37
// defined in your board variant if supported
You can’t perform that action at this time.
0 commit comments