sc8-gat-stand/gat_stand_fw/user/periph/gat_gpio.c

25 lines
374 B
C
Raw Normal View History

/*
* 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);
}