zephyr/boards/arm/usb_kw24d512/board.h
Johann Fischer 52923e6a93 boards: add USB-KW24D512 support
Jira: ZEP-1472

Signed-off-by: Johann Fischer <j.fischer@phytec.de>
2017-10-10 11:56:47 -05:00

25 lines
475 B
C

/*
* Copyright (c) 2017 Phytec Messtechnik GmbH
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __INC_BOARD_H
#define __INC_BOARD_H
#include <soc.h>
/* Push button switch (SW1) */
#define SW0_GPIO_NAME CONFIG_GPIO_MCUX_PORTC_NAME
#define SW0_GPIO_PIN 4
/* LED0 (D2) */
#define LED0_GPIO_PORT CONFIG_GPIO_MCUX_PORTD_NAME
#define LED0_GPIO_PIN 4
/* LED1 (D3) */
#define LED1_GPIO_PORT CONFIG_GPIO_MCUX_PORTD_NAME
#define LED1_GPIO_PIN 5
#endif /* __INC_BOARD_H */