2024-10-16 23:51:49 -07:00
|
|
|
/*
|
|
|
|
* gat_gpio.h
|
|
|
|
*
|
|
|
|
* Created on: Oct 16, 2024
|
|
|
|
* Author: true
|
|
|
|
*/
|
|
|
|
|
2024-11-06 19:15:40 -08:00
|
|
|
#ifndef USER_PERIPH_GAT_GPIO_H_
|
|
|
|
#define USER_PERIPH_GAT_GPIO_H_
|
2024-10-16 23:51:49 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <ch32v20x.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GAT_GPIO_PORT GPIOA
|
|
|
|
|
|
|
|
#define GAT_GP1_PIN 9
|
|
|
|
#define GAT_GP2_PIN 10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void gat_gpio_init();
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-11-06 19:15:40 -08:00
|
|
|
#endif /* USER_PERIPH_GAT_GPIO_H_ */
|