Skip to content

Commit

Permalink
Merge pull request #9385 from iNavFlight/mmosca-bfcomap-sym-total
Browse files Browse the repository at this point in the history
Add SYM_TOTAL and SYM_GFORCE to BFCOMPAT
  • Loading branch information
mmosca authored Oct 22, 2023
2 parents b6fb884 + ab20702 commit f5b33a0
Showing 1 changed file with 5 additions and 7 deletions.
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

0 comments on commit f5b33a0

Please sign in to comment.