2021-06-28 23:03:02 +00:00
|
|
|
// vim: set et:
|
|
|
|
/*
|
2021-06-12 19:35:46 +00:00
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021, Ha Thach (tinyusb.org)
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* This file is part of the TinyUSB stack.
|
|
|
|
*/
|
|
|
|
|
2021-06-13 18:07:54 +00:00
|
|
|
#ifndef BOARD_H_MOD
|
|
|
|
#define BOARD_H_MOD
|
2021-06-12 19:35:46 +00:00
|
|
|
|
2021-07-25 22:21:02 +00:00
|
|
|
#include <pico/bootrom.h>
|
|
|
|
|
2021-06-12 19:35:46 +00:00
|
|
|
#ifdef __cplusplus
|
2021-06-13 23:32:21 +00:00
|
|
|
extern "C" {
|
2021-06-12 19:35:46 +00:00
|
|
|
#endif
|
|
|
|
|
2021-06-13 18:07:54 +00:00
|
|
|
#ifdef PICO_DEFAULT_LED_PIN
|
2021-06-28 23:03:02 +00:00
|
|
|
#define LED_PIN PICO_DEFAULT_LED_PIN
|
|
|
|
#define LED_STATE_ON (!(PICO_DEFAULT_LED_PIN_INVERTED))
|
2021-06-13 18:07:54 +00:00
|
|
|
#endif
|
2021-06-12 19:35:46 +00:00
|
|
|
|
|
|
|
// Button pin is BOOTSEL which is flash CS pin
|
|
|
|
#define BUTTON_BOOTSEL
|
2021-06-28 23:03:02 +00:00
|
|
|
#define BUTTON_STATE_ACTIVE 0
|
2021-06-12 19:35:46 +00:00
|
|
|
|
2021-06-28 23:03:02 +00:00
|
|
|
#if !defined(USE_USBCDC_FOR_STDIO) && defined(PICO_DEFAULT_UART_TX_PIN) && \
|
|
|
|
defined(PICO_DEFAULT_UART_RX_PIN) && defined(PICO_DEFAULT_UART)
|
|
|
|
#define UART_DEV PICO_DEFAULT_UART
|
|
|
|
#define UART_TX_PIN PICO_DEFAULT_UART_TX_PIN
|
|
|
|
#define UART_RX_PIN PICO_DEFAULT_UART_RX_PIN
|
2021-06-12 19:35:46 +00:00
|
|
|
#endif
|
|
|
|
|
2021-08-25 23:21:39 +00:00
|
|
|
// (not actually for TinyUSB overrides)
|
2021-07-25 22:21:02 +00:00
|
|
|
// Reset to bootloader
|
|
|
|
#define bsp_reset_bootloader() reset_usb_boot(0, 0)
|
|
|
|
|
2021-06-12 19:35:46 +00:00
|
|
|
#ifdef __cplusplus
|
2021-06-13 23:32:21 +00:00
|
|
|
}
|
2021-06-12 19:35:46 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* BOARD_H_ */
|