mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cc6adbb39d
The QN9080DK is the developer board reference from NXP for the QN908x CPUs. The developer kit comes with two boards: a larger PCB with many peripherals and a much smaller "USB dongle". This board adds initial support for the larger "DK board". At the moment, with the minimal CPU support this board only configures the GPIOs available in the board, namely the RGB LED and the two user buttons.
72 lines
1.3 KiB
C
72 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2020 iosabi
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup boards_qn9080dk
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific configuration of direct mapped GPIOs
|
|
*
|
|
* @author iosabi <iosabi@protonmail.com>
|
|
*/
|
|
|
|
#ifndef GPIO_PARAMS_H
|
|
#define GPIO_PARAMS_H
|
|
|
|
#include "board.h"
|
|
#include "saul/periph.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief GPIO pin configuration
|
|
*/
|
|
static const saul_gpio_params_t saul_gpio_params[] =
|
|
{
|
|
{
|
|
.name = "LED red",
|
|
.pin = LED_RED_PIN,
|
|
.mode = GPIO_OUT,
|
|
.flags = SAUL_GPIO_INIT_CLEAR,
|
|
},
|
|
{
|
|
.name = "LED green",
|
|
.pin = LED_GREEN_PIN,
|
|
.mode = GPIO_OUT,
|
|
.flags = SAUL_GPIO_INIT_CLEAR,
|
|
},
|
|
{
|
|
.name = "LED blue",
|
|
.pin = LED_BLUE_PIN,
|
|
.mode = GPIO_OUT,
|
|
.flags = SAUL_GPIO_INIT_CLEAR,
|
|
},
|
|
{
|
|
.name = "Button(SW1)",
|
|
.pin = BTN1_PIN,
|
|
.mode = BTN1_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "Button(SW2)",
|
|
.pin = BTN2_PIN,
|
|
.mode = BTN2_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GPIO_PARAMS_H */
|
|
/** @} */
|