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 399B

12345678910111213141516
  1. #include <stdio.h>
  2. #include <system.h>
  3. #include <inttypes.h>
  4. #include "../device_test.h"
  5. #include "../test_task.h"
  6. #include "../../../software/signal_processing/system/binding.h"
  7. #include "../../software/signal_processing/system/task_sine.h"
  8. #include "../../data/cosine.h"
  9. int main()
  10. {
  11. device_test( test_task, BINDING_SW, & COSINE_CONFIG, NULL, NULL, expected_cosine, 5e-2 );
  12. return 0;
  13. }