2018-03-26 18:37:32 +02:00
|
|
|
/****************************************************************************
|
2019-12-16 19:35:45 +01:00
|
|
|
* boards/arm/nrf52/nrf52_feather/include/board.h
|
2018-03-26 18:37:32 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Janne Rosberg <janne@offcode.fi>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-12-16 19:35:45 +01:00
|
|
|
#ifndef __BOARDS_ARM_NRF52_NRF52_FEATHER_INCLUDE_BOARD_H
|
|
|
|
#define __BOARDS_ARM_NRF52_NRF52_FEATHER_INCLUDE_BOARD_H
|
2018-03-26 18:37:32 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2020-01-08 15:48:20 +01:00
|
|
|
#if defined(CONFIG_ARCH_IRQBUTTONS) && defined(CONFIG_NRF52_GPIOTE)
|
2018-03-26 18:37:32 +02:00
|
|
|
# include <nuttx/irq.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Clocking ****************************************************************/
|
|
|
|
|
|
|
|
#define BOARD_SYSTICK_CLOCK (64000000)
|
|
|
|
|
|
|
|
/* LED definitions *********************************************************/
|
2019-08-14 16:43:29 +02:00
|
|
|
|
|
|
|
/* A low output illuminates the LED.
|
2018-03-26 18:37:32 +02:00
|
|
|
*
|
|
|
|
* LED index values for use with board_userled()
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BOARD_LED1 0
|
|
|
|
#define BOARD_LED2 1
|
2019-12-16 19:35:45 +01:00
|
|
|
#define BOARD_NLEDS 2
|
2018-03-26 18:37:32 +02:00
|
|
|
|
|
|
|
/* LED bits for use with board_userled_all() */
|
|
|
|
|
|
|
|
#define BOARD_LED1_BIT (1 << BOARD_LED1)
|
|
|
|
#define BOARD_LED2_BIT (1 << BOARD_LED2)
|
|
|
|
|
|
|
|
/* If CONFIG_ARCH_LEDS is defined, the LED will be controlled as follows
|
|
|
|
* for NuttX debug functionality (where NC means "No Change").
|
|
|
|
*/
|
2019-12-16 19:35:45 +01:00
|
|
|
|
2018-03-26 18:37:32 +02:00
|
|
|
#define LED_STARTED 0 /* OFF */
|
|
|
|
#define LED_HEAPALLOCATE 0 /* OFF */
|
|
|
|
#define LED_IRQSENABLED 0 /* OFF */
|
|
|
|
#define LED_STACKCREATED 1 /* ON */
|
|
|
|
#define LED_INIRQ 2 /* NC */
|
|
|
|
#define LED_SIGNAL 2 /* NC */
|
|
|
|
#define LED_ASSERTION 2 /* NC */
|
|
|
|
#define LED_PANIC 3 /* Flashing */
|
|
|
|
|
|
|
|
/* If CONFIG_ARCH_LEDS is not defined, then the LEDs are completely under
|
|
|
|
* control of the application. The following interfaces are then available
|
|
|
|
* for application control of the LEDs:
|
|
|
|
*
|
|
|
|
* void board_userled_initialize(void);
|
|
|
|
* void board_userled(int led, bool ledon);
|
|
|
|
* void board_userled_all(uint8_t ledset);
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Button definitions *******************************************************/
|
2019-08-14 16:43:29 +02:00
|
|
|
|
2019-12-16 19:35:45 +01:00
|
|
|
/* No buttons on board */
|
2018-03-26 18:37:32 +02:00
|
|
|
|
|
|
|
/* UART Pins ****************************************************************/
|
2019-08-14 16:43:29 +02:00
|
|
|
|
|
|
|
/* The following definitions must be provided so that the NRF52 serial
|
2018-03-26 18:37:32 +02:00
|
|
|
* driver can set up the UART for the serial console properly.
|
|
|
|
*/
|
|
|
|
|
2019-12-16 19:35:45 +01:00
|
|
|
#define BOARD_UART0_RX_PIN (GPIO_INPUT | GPIO_PORT0 | GPIO_PIN(8))
|
|
|
|
#define BOARD_UART0_TX_PIN (GPIO_OUTPUT | GPIO_VALUE_ONE | GPIO_PORT0 | GPIO_PIN(6))
|
2018-03-26 18:37:32 +02:00
|
|
|
|
2020-01-31 19:07:39 +01:00
|
|
|
#endif /* __BOARDS_ARM_NRF52_NRF52_FEATHER_INCLUDE_BOARD_H */
|