25 lines
367 B
C
25 lines
367 B
C
|
/*
|
||
|
* gat_gpio.c
|
||
|
*
|
||
|
* Created on: Oct 16, 2024
|
||
|
* Author: true
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "gat_gpio.h"
|
||
|
|
||
|
|
||
|
|
||
|
static GPIO_InitTypeDef gpio;
|
||
|
|
||
|
|
||
|
|
||
|
void gat_gpio_init()
|
||
|
{
|
||
|
// set the ID to 0 on GP pins.
|
||
|
gpio.GPIO_Speed = GPIO_Speed_2MHz;
|
||
|
gpio.GPIO_Mode = GPIO_Mode_IPD;
|
||
|
gpio.GPIO_Pin = (1 << GAT_GP1_PIN) | (1 << GAT_GP2_PIN);
|
||
|
GPIO_Init(GAT_GPIO_PORT, &gpio);
|
||
|
}
|