|
1234567891011121314151617 |
- #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_add.h"
- #include "../../data/rand.h"
- #include "../../data/sine_cosine.h"
- #include "../../data/add_rand.h"
-
- int main() {
- device_test( test_task, BINDING_SW, & ADD_RAND_CONFIG, expected_rand, expected_add_sine_cosine, expected_add_rand, 5e-2 );
- return 0;
- }
-
|