2015-04-11 07:44:37 +08:00
|
|
|
/*
|
2015-12-13 22:31:16 +08:00
|
|
|
* Copyright (c) 2015 Intel Corporation
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-13 22:31:16 +08:00
|
|
|
#ifndef __INC_BOARD_H
|
|
|
|
#define __INC_BOARD_H
|
|
|
|
|
2015-12-17 21:54:35 +08:00
|
|
|
#include <soc.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2016-10-02 10:58:05 +08:00
|
|
|
|
|
|
|
/* Push button switch 0 */
|
|
|
|
#define SW0_GPIO_PIN 2
|
|
|
|
#define SW0_GPIO_NAME CONFIG_GPIO_QMSI_0_NAME
|
|
|
|
|
2016-10-15 21:09:24 +08:00
|
|
|
/* Onboard LED */
|
|
|
|
#define LED0_GPIO_PORT CONFIG_GPIO_QMSI_0_NAME
|
|
|
|
#define LED0_GPIO_PIN 24
|
|
|
|
|
2015-12-13 22:31:16 +08:00
|
|
|
#endif /* __INC_BOARD_H */
|