Skip to content

Commit

Permalink
Rename new option
Browse files Browse the repository at this point in the history
  • Loading branch information
mmosca committed Nov 1, 2024
1 parent 107aad5 commit 5c670ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/drivers/osd.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ typedef enum {
VIDEO_SYSTEM_AVATAR,
VIDEO_SYSTEM_DJICOMPAT,
VIDEO_SYSTEM_DJICOMPAT_HD,
VIDEO_SYSTEM_DJINEW
VIDEO_SYSTEM_DJI_NATIVE
} videoSystem_e;

typedef enum {
Expand Down
2 changes: 1 addition & 1 deletion src/main/fc/settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ tables:
values: ["MAH", "WH"]
enum: osd_stats_energy_unit_e
- name: osd_video_system
values: ["AUTO", "PAL", "NTSC", "HDZERO", "DJIWTF", "AVATAR", "BF43COMPAT", "BFHDCOMPAT"]
values: ["AUTO", "PAL", "NTSC", "HDZERO", "DJIWTF", "AVATAR", "BF43COMPAT", "BFHDCOMPAT", "DJI_NATIVE"]
enum: videoSystem_e
- name: osd_telemetry
values: ["OFF", "ON","TEST"]
Expand Down
2 changes: 1 addition & 1 deletion src/main/io/displayport_msp_osd.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ displayPort_t* mspOsdDisplayPortInit(const videoSystem_e videoSystem)
break;
case VIDEO_SYSTEM_DJICOMPAT_HD:
case VIDEO_SYSTEM_AVATAR:
case VIDEO_SYSTEM_DJINEW:
case VIDEO_SYSTEM_DJI_NATIVE:
currentOsdMode = HD_5320;
screenRows = AVATAR_ROWS;
screenCols = AVATAR_COLS;
Expand Down

0 comments on commit 5c670ae

Please sign in to comment.