|
/*
|
|
* gat_gpio.h
|
|
*
|
|
* Created on: Oct 16, 2024
|
|
* Author: true
|
|
*/
|
|
|
|
#ifndef USER_PERIPH_GAT_GPIO_H_
|
|
#define USER_PERIPH_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_PERIPH_GAT_GPIO_H_ */
|