circuitpython/ports/raspberrypi/boards/wiznet_w5100s_evb_pico/mpconfigboard.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
297 B
C
Raw Normal View History

2022-04-06 01:52:28 -04:00
#define MICROPY_HW_BOARD_NAME "W5100S-EVB-Pico"
#define MICROPY_HW_MCU_NAME "rp2040"
2022-04-14 01:35:23 -04:00
#define DEFAULT_SPI_BUS_SCK (&pin_GPIO18)
#define DEFAULT_SPI_BUS_MOSI (&pin_GPIO19)
#define DEFAULT_SPI_BUS_MISO (&pin_GPIO16)
#define DEFAULT_UART_BUS_RX (&pin_GPIO1)
2022-04-22 02:02:50 -04:00
#define DEFAULT_UART_BUS_TX (&pin_GPIO0)