Johannes Kutning 0d1b73e3e0 Initial commit
2023-10-31 07:47:27 +01:00

16 lines
396 B
C

#include <stdio.h>
#include <system.h>
#include <inttypes.h>
#include "../device_test.h"
#include "../test_task.h"
#include "../../../software/signal_processing/system/binding.h"
#include "../../../software/signal_processing/system/task_sine.h"
#include "../../data/sine.h"
int main() {
device_test( test_task, BINDING_SW, & SINE_CONFIG, NULL, NULL, expected_sine, 5e-2 );
return 0;
}