25 lines
374 B
C
25 lines
374 B
C
/*
|
|
* gat_gpio.c
|
|
*
|
|
* Created on: Oct 16, 2024
|
|
* Author: true
|
|
*/
|
|
|
|
|
|
#include "periph/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);
|
|
}
|