From 28e2f5256e793232777ae4a4d971d2da490f51a5 Mon Sep 17 00:00:00 2001 From: Theodore Ateba Date: Tue, 19 Dec 2017 22:33:36 +0000 Subject: AVR: Resolve copilation errors due to new flags on configuration file. Remove the test suite part due to binary footprint under 100% of flash. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11147 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/AVR/RT-ARDUINO-MEGA/main.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'demos/AVR/RT-ARDUINO-MEGA/main.c') 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); } -- cgit v1.2.3