mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5f78519b29
The QN9080DK board can expose the I2C bus SDA and SCL in the pins labeled D14 and D15 respectively in the J5 headers, and in the Pmod (J8) connector in the pins 10 and 9 of the header respectively. The bus has a 2K2 pull up resistor on each line when SB7 and SB8 (next to the Pmod connector) are closed, which is the factory default.
26 lines
647 B
Plaintext
26 lines
647 B
Plaintext
# 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.
|
|
#
|
|
|
|
config BOARD
|
|
default "qn9080dk" if BOARD_QN9080DK
|
|
|
|
config BOARD_QN9080DK
|
|
bool
|
|
default y
|
|
select BOARD_COMMON_QN908X
|
|
select CPU_MODEL_QN9080XHN
|
|
|
|
# Put defined MCU peripherals here (in alphabetical order)
|
|
select BOARD_HAS_XTAL32K
|
|
select BOARD_HAS_XTAL_32M
|
|
select HAS_PERIPH_TIMER
|
|
select HAS_PERIPH_UART
|
|
select HAS_PERIPH_I2C
|
|
select HAS_PERIPH_UART_MODECFG
|
|
|
|
source "$(RIOTBOARD)/common/qn908x/Kconfig"
|