1
0
Fork 0
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:
Steve Evans 2023-04-20 23:15:04 +01:00 committed by GitHub
parent 3167bf756c
commit 445758f3ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 101 additions and 101 deletions

View file

@ -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 {