Studentenversion des ESY6/A Praktikums "signal_processing".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dataChannelTestUtility.h 468B

1234567891011121314151617
  1. #pragma once
  2. #include <cinttypes>
  3. void dataChannelFill( uint32_t base, const float * data );
  4. void dataChannelWriteToFile( uint32_t base, const char * filename );
  5. void dataChannelCheckAndWriteToFile( uint32_t base,
  6. const float * expected, const char * filename );
  7. void dataChannelCheckAndWriteToFile( uint32_t base,
  8. const uint32_t * expected, const char * filename );
  9. void dataChannelCheck( uint32_t base,
  10. uint32_t expected, const char * filename );