Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SYM_TOTAL and SYM_GFORCE to BFCOMPAT #9385

Merged
merged 3 commits into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions src/main/io/displayport_msp_bf_compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,9 @@ uint8_t getBfCharacter(uint8_t ch, uint8_t page)
case SYM_ALT_M:
return BF_SYM_M;

/*
case SYM_TRIP_DIST:
return BF_SYM_TRIP_DIST;

case SYM_TOTAL:
return BF_SYM_TOTAL;

return BF_SYM_TOTAL_DISTANCE;
/*
case SYM_ALT_KM:
return BF_SYM_ALT_KM;

Expand Down Expand Up @@ -334,10 +330,12 @@ uint8_t getBfCharacter(uint8_t ch, uint8_t page)

case SYM_PITCH_DOWN:
return BF_SYM_PITCH_DOWN;
*/

case SYM_GFORCE:
return BF_SYM_GFORCE;
return 'G';

/*
case SYM_GFORCE_X:
return BF_SYM_GFORCE_X;

Expand Down
Loading