signal_processing_vorlage/tests/software/dataChannelTestUtility.h
Johannes Kutning 0d1b73e3e0 Initial commit
2023-10-31 07:47:27 +01:00

18 lines
468 B
C

#pragma once
#include <cinttypes>
void dataChannelFill( uint32_t base, const float * data );
void dataChannelWriteToFile( uint32_t base, const char * filename );
void dataChannelCheckAndWriteToFile( uint32_t base,
const float * expected, const char * filename );
void dataChannelCheckAndWriteToFile( uint32_t base,
const uint32_t * expected, const char * filename );
void dataChannelCheck( uint32_t base,
uint32_t expected, const char * filename );