1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-09 09:25:07 -04:00

FT8 demod: OSD optimization and fixes

This commit is contained in:
f4exb
2023-01-29 23:20:58 +01:00
parent 2299e5d115
commit 60795d8f37
6 changed files with 93 additions and 40 deletions
+5 -5
View File
@@ -289,15 +289,15 @@ std::string Packing::unpack_4(int a77[], std::string& call1str, std::string& cal
if (swap)
{
msg = std::string(call) + " " + ocall;
call1str = call;
call2str = ocall;
msg = call1str + " " + ocall;
call1str = trim(call);
call2str = trim(ocall);
}
else
{
msg = std::string(ocall) + " " + call;
call1str = ocall;
call2str = call;
call1str = trim(ocall);
call2str = trim(call);
}
int suffix = un64(a77, 71, 2);