29 lines
319 B
C
29 lines
319 B
C
|
/*
|
||
|
* gat_gpio.h
|
||
|
*
|
||
|
* Created on: Oct 16, 2024
|
||
|
* Author: true
|
||
|
*/
|
||
|
|
||
|
#ifndef USER_SRC_GAT_GPIO_H_
|
||
|
#define USER_SRC_GAT_GPIO_H_
|
||
|
|
||
|
|
||
|
|
||
|
#include <ch32v20x.h>
|
||
|
|
||
|
|
||
|
|
||
|
#define GAT_GPIO_PORT GPIOA
|
||
|
|
||
|
#define GAT_GP1_PIN 9
|
||
|
#define GAT_GP2_PIN 10
|
||
|
|
||
|
|
||
|
|
||
|
void gat_gpio_init();
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* USER_SRC_GAT_GPIO_H_ */
|