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

Update to incorporate hardware revision detection for BJF4 target

This commit is contained in:
blckmn 2016-07-30 11:27:04 +10:00
parent 22ded4fea0
commit 0e8d375a1c
8 changed files with 153 additions and 13 deletions

View file

@ -11,6 +11,9 @@
typedef uint8_t ioTag_t; // packet tag to specify IO pin
typedef void* IO_t; // type specifying IO pin. Currently ioRec_t pointer, but this may change
// NONE initializer for ioTag_t variables
#define IOTAG_NONE ((ioTag_t)0)
// NONE initializer for IO_t variable
#define IO_NONE ((IO_t)0)