2024-10-16 23:51:49 -07:00
|
|
|
/*
|
|
|
|
* gat_gpio.c
|
|
|
|
*
|
|
|
|
* Created on: Oct 16, 2024
|
|
|
|
* Author: true
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2024-11-06 19:15:40 -08:00
|
|
|
#include "periph/gat_gpio.h"
|
2024-10-16 23:51:49 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|