mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-19 19:43:52 +01:00
83 lines
1.7 KiB
C
83 lines
1.7 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2020 Freie Universität Berlin
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup boards_adafruit-feather-nrf52840-express
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific configuration for the Adafruit Feather nRF52840
|
|
* Express
|
|
*
|
|
* @author Martine S. Lenders <m.lenders@fu-berlin.de>
|
|
*/
|
|
|
|
#include "cpu.h"
|
|
#include "board_common.h"
|
|
#include "periph/gpio.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name LED pin configuration
|
|
* @{
|
|
*/
|
|
#define LED0_PIN GPIO_PIN(1, 15)
|
|
#define LED1_PIN GPIO_PIN(1, 10)
|
|
|
|
#define LED_PORT (NRF_P1)
|
|
#define LED0_MASK (1 << 15)
|
|
#define LED1_MASK (1 << 10)
|
|
#define LED_MASK (LED0_MASK | LED1_MASK)
|
|
|
|
#define LED0_ON (LED_PORT->OUTSET = LED0_MASK)
|
|
#define LED0_OFF (LED_PORT->OUTCLR = LED0_MASK)
|
|
#define LED0_TOGGLE (LED_PORT->OUT ^= LED0_MASK)
|
|
|
|
#define LED1_ON (LED_PORT->OUTSET = LED1_MASK)
|
|
#define LED1_OFF (LED_PORT->OUTCLR = LED1_MASK)
|
|
#define LED1_TOGGLE (LED_PORT->OUT ^= LED1_MASK)
|
|
/** @} */
|
|
|
|
/**
|
|
* @name Button pin configuration
|
|
* @{
|
|
*/
|
|
#define BTN0_PIN GPIO_PIN(1, 2)
|
|
#define BTN0_MODE GPIO_IN_PU
|
|
/** @} */
|
|
|
|
/**
|
|
* @name MTD configuration
|
|
* @{
|
|
*/
|
|
#define MTD_0 mtd_dev_get(0) /**< MTD device for the external 2MB flash */
|
|
/** @} */
|
|
|
|
/**
|
|
* @name WS281x RGB LEDs configuration
|
|
* @{
|
|
*/
|
|
#ifndef WS281X_PARAM_PIN
|
|
/**
|
|
* @brief GPIO pin connected to the data pin of the first LED
|
|
*/
|
|
#define WS281X_PARAM_PIN GPIO_PIN(0, 16)
|
|
#endif
|
|
#ifndef WS281X_PARAM_NUMOF
|
|
#define WS281X_PARAM_NUMOF (1U) /**< Number of LEDs chained */
|
|
#endif
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|