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.
38 lines
767 B
C
38 lines
767 B
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 implementations for the QN9080DK base board
|
|
*
|
|
* @author iosabi <iosabi@protonmail.com>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include "cpu.h"
|
|
#include "board.h"
|
|
|
|
#include "periph/gpio.h"
|
|
|
|
void board_init(void)
|
|
{
|
|
/* Initialize LEDs and Buttons. */
|
|
gpio_init(LED_RED_PIN, GPIO_OUT);
|
|
gpio_init(LED_GREEN_PIN, GPIO_OUT);
|
|
gpio_init(LED_BLUE_PIN, GPIO_OUT);
|
|
gpio_init(BTN1_PIN, BTN1_MODE);
|
|
gpio_init(BTN2_PIN, BTN2_MODE);
|
|
|
|
/* initialize the CPU */
|
|
cpu_init();
|
|
}
|