aboutsummaryrefslogtreecommitdiffstats
path: root/demos/AVR/RT-ARDUINO-MEGA/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/AVR/RT-ARDUINO-MEGA/main.c')
-rw-r--r--demos/AVR/RT-ARDUINO-MEGA/main.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/demos/AVR/RT-ARDUINO-MEGA/main.c b/demos/AVR/RT-ARDUINO-MEGA/main.c
index 8380124b7..73aba4ea6 100644
--- a/demos/AVR/RT-ARDUINO-MEGA/main.c
+++ b/demos/AVR/RT-ARDUINO-MEGA/main.c
@@ -16,8 +16,6 @@
#include "ch.h"
#include "hal.h"
-#include "rt_test_root.h"
-#include "oslib_test_root.h"
static THD_WORKING_AREA(waThread1, 32);
static THD_FUNCTION(Thread1, arg) {
@@ -57,9 +55,6 @@ int main(void) {
*/
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
- test_execute((BaseSequentialStream *)&SD1, &rt_test_suite);
- test_execute((BaseSequentialStream *)&SD1, &oslib_test_suite);
-
while(TRUE) {
chThdSleepMilliseconds(1000);
}