2020-11-06 10:52:50 +00:00
|
|
|
#include "api-hal-gpio.h"
|
2020-11-11 06:17:53 +00:00
|
|
|
#include "api-hal-resources.h"
|
2020-11-06 10:52:50 +00:00
|
|
|
|
|
|
|
// init GPIO
|
2020-11-19 12:25:32 +00:00
|
|
|
void hal_gpio_init(
|
|
|
|
const GpioPin* gpio,
|
|
|
|
const GpioMode mode,
|
|
|
|
const GpioPull pull,
|
|
|
|
const GpioSpeed speed) {
|
2020-11-06 10:52:50 +00:00
|
|
|
// TODO: Alternate Functions
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
|
|
|
|
|
|
GPIO_InitStruct.Pin = gpio->pin;
|
|
|
|
GPIO_InitStruct.Mode = mode;
|
|
|
|
GPIO_InitStruct.Pull = pull;
|
|
|
|
GPIO_InitStruct.Speed = speed;
|
|
|
|
|
|
|
|
HAL_GPIO_Init(gpio->port, &GPIO_InitStruct);
|
|
|
|
}
|
2020-11-11 06:17:53 +00:00
|
|
|
|
|
|
|
bool hal_gpio_read_sd_detect(void) {
|
|
|
|
bool result = false;
|
2020-11-19 12:25:32 +00:00
|
|
|
|
2020-11-11 06:17:53 +00:00
|
|
|
// TODO open record
|
2020-11-19 12:25:32 +00:00
|
|
|
const GpioPin* sd_cs_record = &sd_cs_gpio;
|
2020-11-11 06:17:53 +00:00
|
|
|
|
|
|
|
// configure pin as input
|
|
|
|
gpio_init_ex(sd_cs_record, GpioModeInput, GpioPullUp, GpioSpeedVeryHigh);
|
|
|
|
delay(50);
|
|
|
|
|
|
|
|
// if gpio_read == 0 return true else return false
|
|
|
|
result = !gpio_read(sd_cs_record);
|
|
|
|
|
|
|
|
// configure pin back
|
|
|
|
gpio_init_ex(sd_cs_record, GpioModeOutputPushPull, GpioPullNo, GpioSpeedVeryHigh);
|
|
|
|
delay(50);
|
|
|
|
|
|
|
|
return result;
|
2020-12-01 18:47:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void enable_cc1101_irq() {
|
|
|
|
HAL_NVIC_SetPriority(EXTI4_IRQn, 5, 0);
|
|
|
|
HAL_NVIC_EnableIRQ(EXTI4_IRQn);
|
|
|
|
}
|