Using pico-sdk develop branch, add in support for CYW43-based WiFi/BT/BLE boards on the RP2350 such as the SparkFun Thing Plus RP2350 or the Pimoroni Pico Plus 2W. Fixes #2608 Rolls in dynamic SPI divider #2600 * Support LED digitalWrite on RP2350+CYW Also move "special GPIO" to 64 since the Pimoroni Pico 2W uses the RP2350B with 48 GPIOs. * Enable CYW43_PIN_WL_DYNAMIC in IDE and P.IO Allows calling `cyw43_set_pins_wl(cyw43_pin_array);` to redefine the CYW43 hookup in the variant initialization.
40 lines
783 B
C
40 lines
783 B
C
#pragma once
|
|
|
|
// Pin definitions taken from:
|
|
// https://datasheets.raspberrypi.org/pico/pico-datasheet.pdf
|
|
|
|
#include <cyw43_wrappers.h>
|
|
|
|
// LEDs
|
|
#define PIN_LED (64u)
|
|
|
|
// Serial
|
|
#define PIN_SERIAL1_TX (0u)
|
|
#define PIN_SERIAL1_RX (1u)
|
|
|
|
#define PIN_SERIAL2_TX (8u)
|
|
#define PIN_SERIAL2_RX (9u)
|
|
|
|
// SPI
|
|
#define PIN_SPI0_MISO (16u)
|
|
#define PIN_SPI0_MOSI (19u)
|
|
#define PIN_SPI0_SCK (18u)
|
|
#define PIN_SPI0_SS (17u)
|
|
|
|
#define PIN_SPI1_MISO (12u)
|
|
#define PIN_SPI1_MOSI (15u)
|
|
#define PIN_SPI1_SCK (14u)
|
|
#define PIN_SPI1_SS (13u)
|
|
|
|
// Wire
|
|
#define PIN_WIRE0_SDA (4u)
|
|
#define PIN_WIRE0_SCL (5u)
|
|
|
|
#define PIN_WIRE1_SDA (26u)
|
|
#define PIN_WIRE1_SCL (27u)
|
|
|
|
#define SERIAL_HOWMANY (3u)
|
|
#define SPI_HOWMANY (2u)
|
|
#define WIRE_HOWMANY (2u)
|
|
|
|
#include "../generic/common.h"
|