switched back to terminus 10x20 no unicode for now, until hardware rotates 90
Former-commit-id: 5db3d55af3443e9e15ee202156d71a1ec15a4086
This commit is contained in:
parent
2d6fca9812
commit
b26765a7f0
|
@ -1 +1 @@
|
||||||
991767a65daecf769ad18d4cff2b6ccf858da843
|
890272146e6936b8596ef44ad393d3987dab8418
|
|
@ -444,7 +444,7 @@ void interactiveShowData(void) {
|
||||||
printf (
|
printf (
|
||||||
// original version "Hex Mode Sqwk Flight Alt Spd Hdg Lat Long Sig Msgs Ti%c\n", progress);
|
// original version "Hex Mode Sqwk Flight Alt Spd Hdg Lat Long Sig Msgs Ti%c\n", progress);
|
||||||
// pitft version "\x1B[30;47m\e[1mFlight Alt Spd Lat Long \n", progress);
|
// pitft version "\x1B[30;47m\e[1mFlight Alt Spd Lat Long \n", progress);
|
||||||
"\x1B[30;47m\e[1mFlight Zm m/s D(km) %lc S",0x25cb);
|
"\x1B[30;47m\e[1mFlight Zm m/s D(km) H S ");
|
||||||
} else {
|
} else {
|
||||||
printf (
|
printf (
|
||||||
"Hex Flight Alt V/S GS TT SSR G*456^ Msgs Seen %c\n", progress);
|
"Hex Flight Alt V/S GS TT SSR G*456^ Msgs Seen %c\n", progress);
|
||||||
|
@ -550,7 +550,8 @@ void interactiveShowData(void) {
|
||||||
|
|
||||||
snprintf(strD, 6,"%5.01f", d);
|
snprintf(strD, 6,"%5.01f", d);
|
||||||
|
|
||||||
//formatted for terminusBold 10x16
|
/*
|
||||||
|
//formatted for Unifont 8x16, rotated 90
|
||||||
printf("\n\x1B[%d;31m%-8s\x1B[%d;32m%5s \x1B[%d;33m%3s \x1B[%d;34m%6s \x1B[%d;36m%c%c \x1B[%d;37m%lc",
|
printf("\n\x1B[%d;31m%-8s\x1B[%d;32m%5s \x1B[%d;33m%3s \x1B[%d;34m%6s \x1B[%d;36m%c%c \x1B[%d;37m%lc",
|
||||||
count%2, a->flight,
|
count%2, a->flight,
|
||||||
count%2, strFl,
|
count%2, strFl,
|
||||||
|
@ -558,6 +559,16 @@ void interactiveShowData(void) {
|
||||||
count%2, strD,
|
count%2, strD,
|
||||||
count%2, cLat, cLon,
|
count%2, cLat, cLon,
|
||||||
count%2, 0x2581 + (wint_t) (2*signalAverage));
|
count%2, 0x2581 + (wint_t) (2*signalAverage));
|
||||||
|
*/
|
||||||
|
|
||||||
|
//formatted for terminusBold 10x20, no unicode
|
||||||
|
printf("\n\x1B[%d;31m%-8s\x1B[%d;32m%5s \x1B[%d;33m%3s \x1B[%d;34m%6s \x1B[%d;36m%c%c \x1B[%d;37m%d",
|
||||||
|
count%2, a->flight,
|
||||||
|
count%2, strFl,
|
||||||
|
count%2, strGs,
|
||||||
|
count%2, strD,
|
||||||
|
count%2, cLat, cLon,
|
||||||
|
count%2, signalAverage);
|
||||||
count++;
|
count++;
|
||||||
} else {
|
} else {
|
||||||
numNoDir++;
|
numNoDir++;
|
||||||
|
|
Binary file not shown.
|
@ -1 +1 @@
|
||||||
27c08896dac8d6200ae9a0c8901d939002697c2a
|
2990254406871e42d1d8475d456da99985676d52
|
Loading…
Reference in a new issue