mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +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.
70 lines
1.2 KiB
C
70 lines
1.2 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 definitions for the QN9080DK base board
|
|
*
|
|
* @author iosabi <iosabi@protonmail.com>
|
|
*/
|
|
|
|
#ifndef BOARD_H
|
|
#define BOARD_H
|
|
|
|
#include "cpu.h"
|
|
#include "periph_conf.h"
|
|
#include "periph_cpu.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name Clock configuration
|
|
* @{
|
|
*/
|
|
#ifndef CLOCK_CORECLOCK
|
|
/* Using 32MHz internal oscillator as default clock source */
|
|
#define CLOCK_CORECLOCK (32000000ul)
|
|
#endif
|
|
/** @} */
|
|
|
|
/**
|
|
* @name LED configuration
|
|
* @{
|
|
*/
|
|
#define LED_RED_PIN GPIO_PIN(PORT_A, 31)
|
|
#define LED_GREEN_PIN GPIO_PIN(PORT_A, 25)
|
|
#define LED_BLUE_PIN GPIO_PIN(PORT_A, 13)
|
|
/** @} */
|
|
|
|
/**
|
|
* @name User buttons
|
|
* @{
|
|
*/
|
|
#define BTN1_PIN GPIO_PIN(PORT_A, 24)
|
|
#define BTN1_MODE GPIO_IN_PU
|
|
#define BTN2_PIN GPIO_PIN(PORT_A, 19)
|
|
#define BTN2_MODE GPIO_IN_PU
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Initialize board specific hardware
|
|
*/
|
|
void board_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* BOARD_H */
|
|
/** @} */
|