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

123456789101112131415
  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/sine.h"
  9. int main() {
  10. device_test( test_task, BINDING_SW, & SINE_CONFIG, NULL, NULL, expected_sine, 5e-2 );
  11. return 0;
  12. }