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

Changed tabs to spaces.

This commit is contained in:
Martin Budden 2016-06-16 09:10:40 +01:00
parent f0f7220ff2
commit db07217afd
2 changed files with 148 additions and 148 deletions

View file

@ -5,14 +5,14 @@
#include "platform.h"
typedef struct ioDef_s {
ioTag_t tag;
ioTag_t tag;
} ioDef_t;
typedef struct ioRec_s {
GPIO_TypeDef *gpio;
uint16_t pin;
resourceOwner_t owner;
resourceType_t resourcesUsed; // TODO!
GPIO_TypeDef *gpio;
uint16_t pin;
resourceOwner_t owner;
resourceType_t resourcesUsed; // TODO!
} ioRec_t;
extern ioRec_t ioRecs[DEFIO_IO_USED_COUNT];