1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 22:35:23 +03:00

STM32F3 - Remove some compiler warnings.

This commit is contained in:
Dominic Clifton 2014-09-26 01:06:14 +01:00
parent 8d737de864
commit 15cbeff86e
2 changed files with 8 additions and 0 deletions

View file

@ -20,6 +20,8 @@
#include "platform.h"
#include "build_config.h"
#include "gpio.h"
#define MODE_OFFSET 0
@ -70,5 +72,8 @@ void gpioInit(GPIO_TypeDef *gpio, gpio_config_t *config)
void gpioExtiLineConfig(uint8_t portsrc, uint8_t pinsrc)
{
UNUSED(portsrc);
UNUSED(pinsrc);
// FIXME needed yet? implement?
}