mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 17:55:30 +03:00
Fix handling of attribute byte (#12701)
This commit is contained in:
parent
3167bf756c
commit
445758f3ec
12 changed files with 101 additions and 101 deletions
|
@ -35,14 +35,14 @@ typedef enum {
|
|||
} displayPortDeviceType_e;
|
||||
|
||||
typedef enum {
|
||||
DISPLAYPORT_ATTR_NORMAL = 0,
|
||||
DISPLAYPORT_ATTR_INFO,
|
||||
DISPLAYPORT_ATTR_WARNING,
|
||||
DISPLAYPORT_ATTR_CRITICAL,
|
||||
DISPLAYPORT_ATTR_COUNT,
|
||||
DISPLAYPORT_SEVERITY_NORMAL = 0,
|
||||
DISPLAYPORT_SEVERITY_INFO,
|
||||
DISPLAYPORT_SEVERITY_WARNING,
|
||||
DISPLAYPORT_SEVERITY_CRITICAL,
|
||||
DISPLAYPORT_SEVERITY_COUNT,
|
||||
} displayPortSeverity_e;
|
||||
|
||||
#define DISPLAYPORT_ATTR_BLINK 0x80 // Device local blink bit or'ed into displayPortSeverity_e
|
||||
#define DISPLAYPORT_BLINK 0x80 // Device local blink bit or'ed into displayPortSeverity_e
|
||||
|
||||
// System elements rendered by VTX or Goggles
|
||||
typedef enum {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue