mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
* Rework use of pico_cmake_set in board headers to make it slightly less magic/confusing - prefer "pico_cmake_set(var, value)" over "// pico_cmake_set var = value" - prefer "pico_cmake_set_default(var, value)" over "// pico_cmake_set_default var = value" - move these inside the header include guards as CLion complains Note that the macros are defined in "pico.h" however that is not explicitly included by the board headers; this will probably confuse some VS code syntax highligting, so lets see how it looks - i'd prefer to avoid having to include a header just for this * Update check_board_header.py with the new pico_cmake_set formats * Add brackets back around `PICO_FLASH_SIZE_BYTES` settings The python script checks for an exact match between the #define and the pico_cmake_set_default, so fails without the brackets * Rename to pico_board_cmake_set and pico_board_cmake_set_default * Fix support for old versions --------- Co-authored-by: William Vinnicombe <william.vinnicombe@raspberrypi.com>
97 lines
2.1 KiB
C
97 lines
2.1 KiB
C
/*
|
|
* 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_ADAFRUIT_QTPY_RP2040_H
|
|
#define _BOARDS_ADAFRUIT_QTPY_RP2040_H
|
|
|
|
pico_board_cmake_set(PICO_PLATFORM, rp2040)
|
|
|
|
// For board detection
|
|
#define ADAFRUIT_QTPY_RP2040
|
|
|
|
// On some samples, the xosc can take longer to stabilize than is usual
|
|
#ifndef PICO_XOSC_STARTUP_DELAY_MULTIPLIER
|
|
#define PICO_XOSC_STARTUP_DELAY_MULTIPLIER 64
|
|
#endif
|
|
|
|
//------------- UART -------------//
|
|
#ifndef PICO_DEFAULT_UART
|
|
#define PICO_DEFAULT_UART 1
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_UART_TX_PIN
|
|
#define PICO_DEFAULT_UART_TX_PIN 20
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_UART_RX_PIN
|
|
#define PICO_DEFAULT_UART_RX_PIN 5
|
|
#endif
|
|
|
|
//------------- LED -------------//
|
|
// No normal LED
|
|
// #define PICO_DEFAULT_LED_PIN 13
|
|
|
|
#ifndef PICO_DEFAULT_WS2812_PIN
|
|
#define PICO_DEFAULT_WS2812_PIN 12
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_WS2812_POWER_PIN
|
|
#define PICO_DEFAULT_WS2812_POWER_PIN 11
|
|
#endif
|
|
|
|
//------------- I2C -------------//
|
|
#ifndef PICO_DEFAULT_I2C
|
|
#define PICO_DEFAULT_I2C 0
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_I2C_SDA_PIN
|
|
#define PICO_DEFAULT_I2C_SDA_PIN 24
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_I2C_SCL_PIN
|
|
#define PICO_DEFAULT_I2C_SCL_PIN 25
|
|
#endif
|
|
|
|
//------------- SPI -------------//
|
|
#ifndef PICO_DEFAULT_SPI
|
|
#define PICO_DEFAULT_SPI 0
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_SPI_TX_PIN
|
|
#define PICO_DEFAULT_SPI_TX_PIN 3
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_SPI_RX_PIN
|
|
#define PICO_DEFAULT_SPI_RX_PIN 4
|
|
#endif
|
|
|
|
#ifndef PICO_DEFAULT_SPI_SCK_PIN
|
|
#define PICO_DEFAULT_SPI_SCK_PIN 6
|
|
#endif
|
|
|
|
//------------- FLASH -------------//
|
|
|
|
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1
|
|
|
|
#ifndef PICO_FLASH_SPI_CLKDIV
|
|
#define PICO_FLASH_SPI_CLKDIV 2
|
|
#endif
|
|
|
|
pico_board_cmake_set_default(PICO_FLASH_SIZE_BYTES, (8 * 1024 * 1024))
|
|
#ifndef PICO_FLASH_SIZE_BYTES
|
|
#define PICO_FLASH_SIZE_BYTES (8 * 1024 * 1024)
|
|
#endif
|
|
// All boards have B1 RP2040
|
|
#ifndef PICO_RP2040_B0_SUPPORTED
|
|
#define PICO_RP2040_B0_SUPPORTED 0
|
|
#endif
|
|
|
|
#endif
|