1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -04:00

FT8 demod: more code linting

This commit is contained in:
f4exb
2026-03-15 00:18:52 +01:00
parent c32aa8001a
commit e98b4bdeb1
12 changed files with 92 additions and 62 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ int LDPC::ldpc_check(int codeword[])
// iters is how hard to try.
// ok is the number of parity checks that worked out,
// ok == 83 means success.
void LDPC::ldpc_decode(float llcodeword[], int iters, int plain[], int *ok)
void LDPC::ldpc_decode(const float llcodeword[], int iters, int plain[], int *ok)
{
REAL m[83][174];
REAL e[83][174];