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:
parent
a2c587fbbb
commit
4fb086b81b
4 changed files with 9 additions and 15 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue