Skip to content

Commit b712d06

Browse files
WIP - Support CYW43 boards on RP2350
Using pico-sdk develop branch with minor patch, add in support for the CYW43-based WiFi boards on the RP2350. Fixes #2608
1 parent ca30518 commit b712d06

40 files changed

+649
-38
lines changed

boards.txt

Lines changed: 338 additions & 0 deletions
Large diffs are not rendered by default.

include/lwipopts.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ extern unsigned long __lwip_rand(void);
2929
#define MEM_SIZE (__LWIP_MEMMULT * 16384)
3030
#define MEMP_NUM_TCP_SEG (32)
3131
#define MEMP_NUM_ARP_QUEUE (10)
32-
//#define MEMP_NUM_SYS_TIMEOUT (LWIP_NUM_SYS_TIMEOUT_INTERNAL + 4)
3332
#define PBUF_POOL_SIZE (__LWIP_MEMMULT > 1 ? 32 : 24)
3433
#define LWIP_ARP 5
3534
#define LWIP_ETHERNET 1

include/rp2040/pico_base/pico/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#define PICO_SDK_VERSION_MAJOR 2
1515
#define PICO_SDK_VERSION_MINOR 0
16-
#define PICO_SDK_VERSION_REVISION 0
17-
#define PICO_SDK_VERSION_STRING "2.0.0"
16+
#define PICO_SDK_VERSION_REVISION 1
17+
#define PICO_SDK_VERSION_STRING "2.0.1-develop"
1818

1919
#endif

include/rp2350/pico_base/pico/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#define PICO_SDK_VERSION_MAJOR 2
1515
#define PICO_SDK_VERSION_MINOR 0
16-
#define PICO_SDK_VERSION_REVISION 0
17-
#define PICO_SDK_VERSION_STRING "2.0.0"
16+
#define PICO_SDK_VERSION_REVISION 1
17+
#define PICO_SDK_VERSION_STRING "2.0.1-develop"
1818

1919
#endif

lib/core_inc.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
-iwithprefixbefore/pico-sdk/src/common/pico_util/include
1616
-iwithprefixbefore/pico-sdk/src/common/pico_stdlib_headers/include
1717
-iwithprefixbefore/pico-sdk/src/common/pico_usb_reset_interface_headers/include
18+
-iwithprefixbefore/pico-sdk/src/rp2_common/boot_bootrom_headers/include
1819
-iwithprefixbefore/pico-sdk/src/rp2_common/cmsis/include
1920
-iwithprefixbefore/pico-sdk/src/rp2_common/cmsis/stub/CMSIS/Core/Include
2021
-iwithprefixbefore/pico-sdk/src/rp2_common/hardware_adc/include
@@ -47,6 +48,7 @@
4748
-iwithprefixbefore/pico-sdk/src/rp2_common/pico_bootrom/include
4849
-iwithprefixbefore/pico-sdk/src/rp2_common/pico_double/include
4950
-iwithprefixbefore/pico-sdk/src/rp2_common/pico_fix/rp2040_usb_device_enumeration/include
51+
-iwithprefixbefore/pico-sdk/src/rp2_common/pico_flash/include
5052
-iwithprefixbefore/pico-sdk/src/rp2_common/pico_float/include
5153
-iwithprefixbefore/pico-sdk/src/rp2_common/pico_int64_ops/include
5254
-iwithprefixbefore/pico-sdk/src/rp2_common/pico_lwip/include

lib/rp2040/libipv4-big.a

79.5 KB
Binary file not shown.

lib/rp2040/libipv4-bt-big.a

41.2 KB
Binary file not shown.

lib/rp2040/libipv4-bt.a

41.2 KB
Binary file not shown.

lib/rp2040/libipv4-ipv6-big.a

79.5 KB
Binary file not shown.

lib/rp2040/libipv4-ipv6-bt-big.a

41.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)