19 lines
311 B
C
19 lines
311 B
C
/*
|
|
* Copyright (c) 2017, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __INC_BOARD_H
|
|
#define __INC_BOARD_H
|
|
|
|
#include <soc.h>
|
|
|
|
#define LED0_GPIO_PORT CONFIG_MCUX_IGPIO_1_NAME
|
|
#define LED0_GPIO_PIN 9
|
|
|
|
#define SW0_GPIO_NAME CONFIG_MCUX_IGPIO_5_NAME
|
|
#define SW0_GPIO_PIN 0
|
|
|
|
#endif /* __INC_BOARD_H */
|