1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

it builds

This commit is contained in:
nathan 2016-06-15 19:59:04 -07:00
parent e57ed066bc
commit e07808e2a8
80 changed files with 1746 additions and 574 deletions

View file

@ -6,8 +6,6 @@ typedef enum {
OWNER_PWMINPUT,
OWNER_PPMINPUT,
OWNER_PWMOUTPUT_MOTOR,
OWNER_PWMOUTPUT_FAST,
OWNER_PWMOUTPUT_ONESHOT,
OWNER_PWMOUTPUT_SERVO,
OWNER_SOFTSERIAL_RX,
OWNER_SOFTSERIAL_TX,
@ -23,7 +21,9 @@ typedef enum {
OWNER_SYSTEM,
OWNER_SDCARD,
OWNER_FLASH,
OWNER_USB
OWNER_USB,
OWNER_BEEPER,
OWNER_OSD
} resourceOwner_t;
// Currently TIMER should be shared resource (softserial dualtimer and timerqueue needs to allocate timer channel, but pin can be used for other function)
@ -41,3 +41,4 @@ typedef enum {
RESOURCE_I2C = 1 << 7,
RESOURCE_SPI = 1 << 8,
} resourceType_t;