mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 22:02:33 +00:00
The UDOO Neo Full single board computer configuration supports the following hardware features on the Cortex M4 Core: +-----------+------------+-------------------------------------+ | Interface | Controller | Driver/Component | +===========+============+=====================================+ | NVIC | on-chip | nested vector interrupt controller | +-----------+------------+-------------------------------------+ | SYSTICK | on-chip | systick | +-----------+------------+-------------------------------------+ | UART | on-chip | serial port-polling; | | | | serial port-interrupt | +-----------+------------+-------------------------------------+ | GPIO | on-chip | general purpose input/output | +-----------+------------+-------------------------------------+ The default configuration can be found in the defconfig file: boards/arm/udoo_neo_full_m4/udoo_neo_full_m4_defconfig Other hardware features are not currently supported by the port. Connections and IOs: The UDOO Neo Full board was tested with the following pinmux controller configuration. +---------------+-----------------+---------------------------+ | Board Name | SoC Name | Usage | +===============+=================+===========================+ | J4 RX | UART5_RX_DATA | UART Console | +---------------+-----------------+---------------------------+ | J4 TX | UART5_TX_DATA | UART Console | +---------------+-----------------+---------------------------+ The board has been tested with the following samples. - samples/hello_world - samples/basic/blinky Signed-off-by: Stanislav Poboril <stanislav.poboril@nxp.com>
13 lines
167 B
C
13 lines
167 B
C
/*
|
|
* Copyright (c) 2018, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __INC_BOARD_H
|
|
#define __INC_BOARD_H
|
|
|
|
#include <soc.h>
|
|
|
|
#endif /* __INC_BOARD_H */
|