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.

main.c 428B

12345678910111213141516
  1. #include <stdio.h>
  2. #include <system.h>
  3. #include <inttypes.h>
  4. #include "../device_test.h"
  5. #include "../test_crc.h"
  6. #include "../../../software/signal_processing/system/binding.h"
  7. #include "../../../software/signal_processing/system/task_crc.h"
  8. #include "../../data/fft.h"
  9. #include "../../data/crc.h"
  10. int main() {
  11. device_test( test_task, BINDING_SW, & CRC_CONFIG, expected_fft, NULL, & expected_crc, 0.0 );
  12. return 0;
  13. }