24 lines
553 B
C
24 lines
553 B
C
/*
|
|
* Copyright (c) 2019 Intel Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/** @file
|
|
* @brief Microchip XEC MCU family General Purpose Input Output (GPIO) defines.
|
|
*
|
|
*/
|
|
|
|
#ifndef _MICROCHIP_MEC_SOC_GPIO_H_
|
|
#define _MICROCHIP_MEC_SOC_GPIO_H_
|
|
|
|
#define MCHP_GPIO_000_036 0
|
|
#define MCHP_GPIO_040_076 1
|
|
#define MCHP_GPIO_100_136 2
|
|
#define MCHP_GPIO_140_176 3
|
|
#define MCHP_GPIO_200_236 4
|
|
#define MCHP_GPIO_240_276 5
|
|
#define MCHP_GPIO_MAX_PORT 6
|
|
#define MCHP_NUM_GPIO_PORTS 6
|
|
|
|
#endif /* _MICROCHIP_MEC_SOC_GPIO_H_ */
|