Skip to content

Commit 0cf20fb

Browse files
authored
Merge pull request #64 from hideakitai/feature/support-rpipico2w
Feature/support rpipico2w
2 parents 6e481e9 + c3c535c commit 0cf20fb

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ on:
55
- develop
66
paths-ignore:
77
- .git*
8-
- '**.md'
9-
- 'library.properties'
10-
- 'library.json'
8+
- "**.md"
9+
- "library.properties"
10+
- "library.json"
1111
pull_request:
1212
branches:
1313
- main
1414
- develop
1515
paths-ignore:
1616
- .git*
17-
- '**.md'
18-
- 'library.properties'
19-
- 'library.json'
17+
- "**.md"
18+
- "library.properties"
19+
- "library.json"
2020

2121
jobs:
2222
build-wifi:
23-
name: 'Build Test (WiFi): ${{matrix.board.arch}}:${{matrix.board.name}}'
23+
name: "Build Test (WiFi): ${{matrix.board.arch}}:${{matrix.board.name}}"
2424
runs-on: ubuntu-latest
2525
strategy:
2626
fail-fast: false
@@ -41,6 +41,9 @@ jobs:
4141
- vendor: rp2040
4242
arch: rp2040
4343
name: rpipicow
44+
- vendor: rp2040
45+
arch: rp2040
46+
name: rpipico2w
4447
include:
4548
- index: https://arduino.esp8266.com/stable/package_esp8266com_index.json
4649
board:
@@ -114,7 +117,7 @@ jobs:
114117
verbose: true
115118

116119
build-wifinina:
117-
name: 'Build Test (WiFiNINA): ${{matrix.board.arch}}:${{matrix.board.name}}'
120+
name: "Build Test (WiFiNINA): ${{matrix.board.arch}}:${{matrix.board.name}}"
118121
runs-on: ubuntu-latest
119122
strategy:
120123
fail-fast: false
@@ -162,7 +165,7 @@ jobs:
162165
verbose: true
163166

164167
build-ethernet:
165-
name: 'Build Test (Ethernet): ${{matrix.board.arch}}:${{matrix.board.name}}'
168+
name: "Build Test (Ethernet): ${{matrix.board.arch}}:${{matrix.board.name}}"
166169
runs-on: ubuntu-latest
167170
strategy:
168171
fail-fast: false
@@ -201,6 +204,9 @@ jobs:
201204
- vendor: rp2040
202205
arch: rp2040
203206
name: rpipicow
207+
- vendor: rp2040
208+
arch: rp2040
209+
name: rpipico2w
204210
- vendor: teensy
205211
arch: avr
206212
name: teensy35
@@ -251,7 +257,7 @@ jobs:
251257
verbose: true
252258

253259
build-ethernet-uno:
254-
name: 'Build Test (Ethernet): avr:uno'
260+
name: "Build Test (Ethernet): avr:uno"
255261
runs-on: ubuntu-latest
256262
steps:
257263
- uses: actions/checkout@v4
@@ -275,7 +281,7 @@ jobs:
275281
verbose: true
276282

277283
build-eth:
278-
name: 'Build Test (ETH): ${{matrix.board.arch}}:${{matrix.board.name}}'
284+
name: "Build Test (ETH): ${{matrix.board.arch}}:${{matrix.board.name}}"
279285
runs-on: ubuntu-latest
280286
strategy:
281287
fail-fast: false

ArduinoOSCWiFi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#if defined(ESP_PLATFORM) || defined(ESP8266) || defined(ARDUINO_AVR_UNO_WIFI_REV2) \
66
|| defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_MKRVIDOR4000) || defined(ARDUINO_SAMD_MKR1000) \
77
|| defined(ARDUINO_SAMD_NANO_33_IOT) || defined(ARDUINO_RASPBERRY_PI_PICO_W) || defined(ARDUINO_UNOR4_WIFI) \
8-
|| defined(ARDUINO_GIGA)
8+
|| defined(ARDUINO_GIGA) || defined(ARDUINO_RASPBERRY_PI_PICO_2W)
99
#define ARDUINOOSC_ENABLE_WIFI
1010
#endif
1111

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/hideakitai",
1212
"maintainer": true
1313
},
14-
"version": "0.5.1",
14+
"version": "0.5.2",
1515
"license": "MIT",
1616
"frameworks": "arduino",
1717
"platforms": "*",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoOSC
2-
version=0.5.1
2+
version=0.5.2
33
author=hideakitai
44
maintainer=hideakitai
55
sentence=OSC subscriber / publisher for Arduino

0 commit comments

Comments
 (0)