Re-add accidentally removed constants

This commit is contained in:
Thomas Kolb 2024-04-20 01:31:21 +02:00
parent 2768e21849
commit 90ed7dc0a8
1 changed files with 3 additions and 0 deletions

View File

@ -320,6 +320,9 @@ int main(int argc, char **argv)
if(!on_air) {
// ** Receive signal **
const size_t CHUNKSIZE_BB = 16384;
const size_t CHUNKSIZE_RF = (CHUNKSIZE_BB * SDR_OVERSAMPLING);
float complex rf_samples[CHUNKSIZE_RF];
float complex bb_samples[CHUNKSIZE_BB];