18 lines
369 B
C
18 lines
369 B
C
|
|
||
|
#ifndef __PIN_MAP_H__
|
||
|
#define __PIN_MAP_H__
|
||
|
|
||
|
#include "c_types.h"
|
||
|
#include "user_config.h"
|
||
|
#include "gpio.h"
|
||
|
|
||
|
#define GPIO_PIN_NUM 13
|
||
|
|
||
|
extern uint8_t pin_num[GPIO_PIN_NUM];
|
||
|
extern uint8_t pin_func[GPIO_PIN_NUM];
|
||
|
extern uint32_t pin_mux[GPIO_PIN_NUM];
|
||
|
#ifdef GPIO_INTERRUPT_ENABLE
|
||
|
extern GPIO_INT_TYPE pin_int_type[GPIO_PIN_NUM];
|
||
|
#endif
|
||
|
#endif // #ifndef __PIN_MAP_H__
|