add doc, remove di, add symbol_shifting

This commit is contained in:
2025-03-24 16:42:11 +01:00
parent 009649acd7
commit cb9ff77712
7 changed files with 133 additions and 11 deletions
+8
View File
@@ -11,6 +11,13 @@ typedef struct
uint8_t rdsgen : 2;
} RDSModulatorParameters;
typedef struct
{
uint8_t symbol_shift: 7;
float sample_buffer[SAMPLE_BUFFER_SIZE];
uint8_t sample_buffer_idx : 7;
} RDSModulatorSymbolShifting;
typedef struct
{
uint8_t bit_buffer[BITS_PER_GROUP];
@@ -22,6 +29,7 @@ typedef struct
uint8_t sample_count;
uint16_t in_sample_index;
uint16_t out_sample_index;
RDSModulatorSymbolShifting symbol_shifting;
} RDSModulatorModulationData;
typedef struct {