Browse Source

verbessert

master
badenbergra78621 5 months ago
parent
commit
4d3a27edd1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      software/signal_processing/crc.c

+ 1
- 1
software/signal_processing/crc.c View File

@@ -16,7 +16,7 @@ int task_crc_run( void * task ) {

for ( uint32_t i = 0; i < DATA_CHANNEL_DEPTH; ++i )
{
data_channel_read(crc->base.sources[0], &crc_input.value);
data_channel_read(crc->base.sources[0], uint32_t(&crc_input.value));
crc_res.value = crc32(0, (const void*)crc_input.value, sizeof(crc_input.value));

Loading…
Cancel
Save