| /* |
| * 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 |
| // ----------------------------------------------------- |
| |
| // This header may be included by other board headers as "boards/pico.h" |
| |
| #ifndef _BOARDS_PICO_H |
| #define _BOARDS_PICO_H |
| |
| #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 |
| |
| #ifndef PICO_DEFAULT_LED_PIN |
| #define PICO_DEFAULT_LED_PIN 25 |
| #endif |
| |
| #ifndef PICO_FLASH_SPI_CLKDIV |
| #define PICO_FLASH_SPI_CLKDIV 2 |
| #endif |
| |
| #ifndef PICO_FLASH_SIZE_BYTES |
| #define PICO_FLASH_SIZE_BYTES (2 * 1024 * 1024) |
| #endif |
| |
| // Drive high to force power supply into PWM mode (lower ripple on 3V3 at light loads) |
| #define PICO_SMPS_MODE_PIN 23 |
| |
| #ifndef PICO_FLOAT_SUPPORT_ROM_V1 |
| #define PICO_FLOAT_SUPPORT_ROM_V1 1 |
| #endif |
| |
| #ifndef PICO_DOUBLE_SUPPORT_ROM_V1 |
| #define PICO_DOUBLE_SUPPORT_ROM_V1 1 |
| #endif |
| |
| #endif |