1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-26 09:45:33 +03:00

Try to match coding style

This commit is contained in:
Marcelo Bezerra 2022-12-14 01:13:12 +01:00
parent a2c587fbbb
commit 4fb086b81b
4 changed files with 9 additions and 15 deletions

View file

@ -27,16 +27,13 @@
uint8_t get_bf_character(uint8_t ch, uint8_t page)
{
uint16_t ech = ch | (page << 8);
if(ech >= 0x20 && ech <= 0x5F) // ASCII range
{
if (ech >= 0x20 && ech <= 0x5F) { // ASCII range
return ch;
}
switch (ech)
{
switch (ech) {
case SYM_RSSI:
return BF_SYM_RSSI;