Updated existing Pimoroni board headers to match latest style, and added a new board (#343)
* Updated existing pimoroni board headers to newer style from pico.h * Added new pimoroni board headers * Fixed incorrect MB and missing _pin * Removed SPI defaults from Picosystem
This commit is contained in:
parent
c6d70d51f4
commit
93d3cf4d8e
@ -15,18 +15,7 @@
|
|||||||
// For board detection
|
// For board detection
|
||||||
#define PIMORONI_KEYBOW2040
|
#define PIMORONI_KEYBOW2040
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_UART
|
// --- BOARD SPECIFIC ---
|
||||||
#define PICO_DEFAULT_UART 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_UART_TX_PIN
|
|
||||||
#define PICO_DEFAULT_UART_TX_PIN 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_UART_RX_PIN
|
|
||||||
#define PICO_DEFAULT_UART_RX_PIN 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef KEYBOW2040_I2C_SDA_PIN
|
#ifndef KEYBOW2040_I2C_SDA_PIN
|
||||||
#define KEYBOW2040_I2C_SDA_PIN 4
|
#define KEYBOW2040_I2C_SDA_PIN 4
|
||||||
#endif
|
#endif
|
||||||
@ -111,6 +100,42 @@
|
|||||||
#define KEYBOW2040_NUM_SWITCHES_PINS 16
|
#define KEYBOW2040_NUM_SWITCHES_PINS 16
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// --- UART ---
|
||||||
|
#ifndef PICO_DEFAULT_UART
|
||||||
|
#define PICO_DEFAULT_UART 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_DEFAULT_UART_TX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_TX_PIN 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_DEFAULT_UART_RX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_RX_PIN 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- LED ---
|
||||||
|
// no PICO_DEFAULT_LED_PIN
|
||||||
|
// no PICO_DEFAULT_WS2812_PIN
|
||||||
|
|
||||||
|
// --- I2C ---
|
||||||
|
#ifndef PICO_DEFAULT_I2C
|
||||||
|
#define PICO_DEFAULT_I2C 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SDA_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SDA_PIN KEYBOW2040_I2C_SDA_PIN
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SCL_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SCL_PIN KEYBOW2040_I2C_SCL_PIN
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- SPI ---
|
||||||
|
// no PICO_DEFAULT_SPI
|
||||||
|
// no PICO_DEFAULT_SPI_SCK_PIN
|
||||||
|
// no PICO_DEFAULT_SPI_TX_PIN
|
||||||
|
// no PICO_DEFAULT_SPI_RX_PIN
|
||||||
|
// no PICO_DEFAULT_SPI_CSN_PIN
|
||||||
|
|
||||||
|
// --- FLASH ---
|
||||||
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
||||||
|
|
||||||
#ifndef PICO_FLASH_SPI_CLKDIV
|
#ifndef PICO_FLASH_SPI_CLKDIV
|
||||||
@ -122,7 +147,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// All boards have B1 RP2040
|
// All boards have B1 RP2040
|
||||||
|
|
||||||
#ifndef PICO_FLOAT_SUPPORT_ROM_V1
|
#ifndef PICO_FLOAT_SUPPORT_ROM_V1
|
||||||
#define PICO_FLOAT_SUPPORT_ROM_V1 0
|
#define PICO_FLOAT_SUPPORT_ROM_V1 0
|
||||||
#endif
|
#endif
|
||||||
|
96
src/boards/include/boards/pimoroni_picolipo_16mb.h
Normal file
96
src/boards/include/boards/pimoroni_picolipo_16mb.h
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
// -----------------------------------------------------
|
||||||
|
// NOTE: THIS HEADER IS ALSO INCLUDED BY ASSEMBLER SO
|
||||||
|
// SHOULD ONLY CONSIST OF PREPROCESSOR DIRECTIVES
|
||||||
|
// -----------------------------------------------------
|
||||||
|
|
||||||
|
#ifndef _BOARDS_PIMORONI_PICOLIPO_16MB_H
|
||||||
|
#define _BOARDS_PIMORONI_PICOLIPO_16MB_H
|
||||||
|
|
||||||
|
// For board detection
|
||||||
|
#define PIMORONI_PICOLIPO_16MB
|
||||||
|
|
||||||
|
// --- BOARD SPECIFIC ---
|
||||||
|
#ifndef PICOLIPO_USER_SW_PIN
|
||||||
|
#define PICOLIPO_USER_SW_PIN 23
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICOLIPO_VBUS_DETECT_PIN
|
||||||
|
#define PICOLIPO_VBUS_DETECT_PIN 24
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICOLIPO_BAT_SENSE_PIN
|
||||||
|
#define PICOLIPO_BAT_SENSE_PIN 29
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- UART ---
|
||||||
|
#ifndef PICO_DEFAULT_UART
|
||||||
|
#define PICO_DEFAULT_UART 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_UART_TX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_TX_PIN 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_UART_RX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_RX_PIN 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- LED ---
|
||||||
|
#ifndef PICO_DEFAULT_LED_PIN
|
||||||
|
#define PICO_DEFAULT_LED_PIN 25
|
||||||
|
#endif
|
||||||
|
// no PICO_DEFAULT_WS2812_PIN
|
||||||
|
|
||||||
|
// --- I2C ---
|
||||||
|
#ifndef PICO_DEFAULT_I2C
|
||||||
|
#define PICO_DEFAULT_I2C 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SDA_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SDA_PIN 4
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SCL_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SCL_PIN 5
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- SPI ---
|
||||||
|
#ifndef PICO_DEFAULT_SPI
|
||||||
|
#define PICO_DEFAULT_SPI 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_SCK_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_SCK_PIN 18
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_TX_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_TX_PIN 19
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_RX_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_RX_PIN 16
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_CSN_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_CSN_PIN 17
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- FLASH ---
|
||||||
|
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
||||||
|
|
||||||
|
#ifndef PICO_FLASH_SPI_CLKDIV
|
||||||
|
#define PICO_FLASH_SPI_CLKDIV 2
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_FLASH_SIZE_BYTES
|
||||||
|
#define PICO_FLASH_SIZE_BYTES (16 * 1024 * 1024)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// All boards have B1 RP2040
|
||||||
|
#ifndef PICO_FLOAT_SUPPORT_ROM_V1
|
||||||
|
#define PICO_FLOAT_SUPPORT_ROM_V1 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_DOUBLE_SUPPORT_ROM_V1
|
||||||
|
#define PICO_DOUBLE_SUPPORT_ROM_V1 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
96
src/boards/include/boards/pimoroni_picolipo_4mb.h
Normal file
96
src/boards/include/boards/pimoroni_picolipo_4mb.h
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
// -----------------------------------------------------
|
||||||
|
// NOTE: THIS HEADER IS ALSO INCLUDED BY ASSEMBLER SO
|
||||||
|
// SHOULD ONLY CONSIST OF PREPROCESSOR DIRECTIVES
|
||||||
|
// -----------------------------------------------------
|
||||||
|
|
||||||
|
#ifndef _BOARDS_PIMORONI_PICOLIPO_4MB_H
|
||||||
|
#define _BOARDS_PIMORONI_PICOLIPO_4MB_H
|
||||||
|
|
||||||
|
// For board detection
|
||||||
|
#define PIMORONI_PICOLIPO_4MB
|
||||||
|
|
||||||
|
// --- BOARD SPECIFIC ---
|
||||||
|
#ifndef PICOLIPO_USER_SW_PIN
|
||||||
|
#define PICOLIPO_USER_SW_PIN 23
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICOLIPO_VBUS_DETECT_PIN
|
||||||
|
#define PICOLIPO_VBUS_DETECT_PIN 24
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICOLIPO_BAT_SENSE_PIN
|
||||||
|
#define PICOLIPO_BAT_SENSE_PIN 29
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- UART ---
|
||||||
|
#ifndef PICO_DEFAULT_UART
|
||||||
|
#define PICO_DEFAULT_UART 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_UART_TX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_TX_PIN 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_UART_RX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_RX_PIN 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- LED ---
|
||||||
|
#ifndef PICO_DEFAULT_LED_PIN
|
||||||
|
#define PICO_DEFAULT_LED_PIN 25
|
||||||
|
#endif
|
||||||
|
// no PICO_DEFAULT_WS2812_PIN
|
||||||
|
|
||||||
|
// --- I2C ---
|
||||||
|
#ifndef PICO_DEFAULT_I2C
|
||||||
|
#define PICO_DEFAULT_I2C 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SDA_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SDA_PIN 4
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SCL_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SCL_PIN 5
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- SPI ---
|
||||||
|
#ifndef PICO_DEFAULT_SPI
|
||||||
|
#define PICO_DEFAULT_SPI 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_SCK_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_SCK_PIN 18
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_TX_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_TX_PIN 19
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_RX_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_RX_PIN 16
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_CSN_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_CSN_PIN 17
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- FLASH ---
|
||||||
|
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
||||||
|
|
||||||
|
#ifndef PICO_FLASH_SPI_CLKDIV
|
||||||
|
#define PICO_FLASH_SPI_CLKDIV 2
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_FLASH_SIZE_BYTES
|
||||||
|
#define PICO_FLASH_SIZE_BYTES (4 * 1024 * 1024)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// All boards have B1 RP2040
|
||||||
|
#ifndef PICO_FLOAT_SUPPORT_ROM_V1
|
||||||
|
#define PICO_FLOAT_SUPPORT_ROM_V1 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_DOUBLE_SUPPORT_ROM_V1
|
||||||
|
#define PICO_DOUBLE_SUPPORT_ROM_V1 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
@ -15,16 +15,21 @@
|
|||||||
// For board detection
|
// For board detection
|
||||||
#define PIMORONI_PICOSYSTEM
|
#define PIMORONI_PICOSYSTEM
|
||||||
|
|
||||||
|
// --- BOARD SPECIFIC ---
|
||||||
#ifndef PICOSYSTEM_VBUS_DETECT_PIN
|
#ifndef PICOSYSTEM_VBUS_DETECT_PIN
|
||||||
#define PICOSYSTEM_VBUS_DETECT_PIN 2
|
#define PICOSYSTEM_VBUS_DETECT_PIN 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICOSYSTEM_LCD_SPI
|
||||||
|
#define PICOSYSTEM_LCD_SPI 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef PICOSYSTEM_LCD_RESET_PIN
|
#ifndef PICOSYSTEM_LCD_RESET_PIN
|
||||||
#define PICOSYSTEM_LCD_RESET_PIN 4
|
#define PICOSYSTEM_LCD_RESET_PIN 4
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef PICOSYSTEM_LCD_CS_PIN
|
#ifndef PICOSYSTEM_LCD_CSN_PIN
|
||||||
#define PICOSYSTEM_LCD_CS_PIN 5
|
#define PICOSYSTEM_LCD_CSN_PIN 5
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef PICOSYSTEM_LCD_SCLK_PIN
|
#ifndef PICOSYSTEM_LCD_SCLK_PIN
|
||||||
@ -103,6 +108,7 @@
|
|||||||
#define PICOSYSTEM_BAT_SENSE_PIN 26
|
#define PICOSYSTEM_BAT_SENSE_PIN 26
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// --- UART ---
|
||||||
#ifndef PICO_DEFAULT_UART
|
#ifndef PICO_DEFAULT_UART
|
||||||
#define PICO_DEFAULT_UART 0
|
#define PICO_DEFAULT_UART 0
|
||||||
#endif
|
#endif
|
||||||
@ -115,15 +121,30 @@
|
|||||||
#define PICO_DEFAULT_UART_RX_PIN 1
|
#define PICO_DEFAULT_UART_RX_PIN 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// --- LED ---
|
||||||
// Included so basic examples will work, and set it to the green LED
|
// Included so basic examples will work, and set it to the green LED
|
||||||
#ifndef PICO_DEFAULT_LED_PIN
|
#ifndef PICO_DEFAULT_LED_PIN
|
||||||
#define PICO_DEFAULT_LED_PIN PICOSYSTEM_LED_G_PIN
|
#define PICO_DEFAULT_LED_PIN PICOSYSTEM_LED_G_PIN
|
||||||
#endif
|
#endif
|
||||||
|
// no PICO_DEFAULT_WS2812_PIN
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_LED_PIN_INVERTED
|
#ifndef PICO_DEFAULT_LED_PIN_INVERTED
|
||||||
#define PICO_DEFAULT_LED_PIN_INVERTED 1
|
#define PICO_DEFAULT_LED_PIN_INVERTED 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// --- I2C ---
|
||||||
|
//no PICO_DEFAULT_I2C
|
||||||
|
//no PICO_DEFAULT_I2C_SDA_PIN
|
||||||
|
//no PICO_DEFAULT_I2C_SCL_PIN
|
||||||
|
|
||||||
|
// --- SPI ---
|
||||||
|
// no PICO_DEFAULT_SPI
|
||||||
|
// no PICO_DEFAULT_SPI_SCK_PIN
|
||||||
|
// no PICO_DEFAULT_SPI_TX_PIN
|
||||||
|
// no PICO_DEFAULT_SPI_RX_PIN
|
||||||
|
// no PICO_DEFAULT_SPI_CSN_PIN
|
||||||
|
|
||||||
|
// --- FLASH ---
|
||||||
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
||||||
|
|
||||||
#ifndef PICO_FLASH_SPI_CLKDIV
|
#ifndef PICO_FLASH_SPI_CLKDIV
|
||||||
@ -135,7 +156,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// All boards have B1 RP2040
|
// All boards have B1 RP2040
|
||||||
|
|
||||||
#ifndef PICO_FLOAT_SUPPORT_ROM_V1
|
#ifndef PICO_FLOAT_SUPPORT_ROM_V1
|
||||||
#define PICO_FLOAT_SUPPORT_ROM_V1 0
|
#define PICO_FLOAT_SUPPORT_ROM_V1 0
|
||||||
#endif
|
#endif
|
||||||
|
@ -15,18 +15,7 @@
|
|||||||
// For board detection
|
// For board detection
|
||||||
#define PIMORONI_TINY2040
|
#define PIMORONI_TINY2040
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_UART
|
// --- BOARD SPECIFIC ---
|
||||||
#define PICO_DEFAULT_UART 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_UART_TX_PIN
|
|
||||||
#define PICO_DEFAULT_UART_TX_PIN 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_UART_RX_PIN
|
|
||||||
#define PICO_DEFAULT_UART_RX_PIN 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef TINY2040_LED_R_PIN
|
#ifndef TINY2040_LED_R_PIN
|
||||||
#define TINY2040_LED_R_PIN 18
|
#define TINY2040_LED_R_PIN 18
|
||||||
#endif
|
#endif
|
||||||
@ -67,15 +56,59 @@
|
|||||||
#define TINY2040_NUM_ADC_PINS 4
|
#define TINY2040_NUM_ADC_PINS 4
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// --- UART ---
|
||||||
|
#ifndef PICO_DEFAULT_UART
|
||||||
|
#define PICO_DEFAULT_UART 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_DEFAULT_UART_TX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_TX_PIN 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PICO_DEFAULT_UART_RX_PIN
|
||||||
|
#define PICO_DEFAULT_UART_RX_PIN 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- LED ---
|
||||||
// Included so basic examples will work, and set it to the green LED
|
// Included so basic examples will work, and set it to the green LED
|
||||||
#ifndef PICO_DEFAULT_LED_PIN
|
#ifndef PICO_DEFAULT_LED_PIN
|
||||||
#define PICO_DEFAULT_LED_PIN TINY2040_LED_G_PIN
|
#define PICO_DEFAULT_LED_PIN TINY2040_LED_G_PIN
|
||||||
#endif
|
#endif
|
||||||
|
// no PICO_DEFAULT_WS2812_PIN
|
||||||
|
|
||||||
#ifndef PICO_DEFAULT_LED_PIN_INVERTED
|
#ifndef PICO_DEFAULT_LED_PIN_INVERTED
|
||||||
#define PICO_DEFAULT_LED_PIN_INVERTED 1
|
#define PICO_DEFAULT_LED_PIN_INVERTED 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// --- I2C ---
|
||||||
|
#ifndef PICO_DEFAULT_I2C
|
||||||
|
#define PICO_DEFAULT_I2C 1
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SDA_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SDA_PIN 2
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_I2C_SCL_PIN
|
||||||
|
#define PICO_DEFAULT_I2C_SCL_PIN 3
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- SPI ---
|
||||||
|
#ifndef PICO_DEFAULT_SPI
|
||||||
|
#define PICO_DEFAULT_SPI 0
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_SCK_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_SCK_PIN 6
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_TX_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_TX_PIN 7
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_RX_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_RX_PIN 4
|
||||||
|
#endif
|
||||||
|
#ifndef PICO_DEFAULT_SPI_CSN_PIN
|
||||||
|
#define PICO_DEFAULT_SPI_CSN_PIN 5
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- FLASH ---
|
||||||
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
||||||
|
|
||||||
#ifndef PICO_FLASH_SPI_CLKDIV
|
#ifndef PICO_FLASH_SPI_CLKDIV
|
||||||
|
Loading…
Reference in New Issue
Block a user