aboutsummaryrefslogtreecommitdiffstats
path: root/demos/AVR/RT-ARDUINO-MEGA/main.c
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-12-19 22:33:36 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-12-19 22:33:36 +0000
commit28e2f5256e793232777ae4a4d971d2da490f51a5 (patch)
tree004b1f53f123762e2f8319f784067a0c52631a38 /demos/AVR/RT-ARDUINO-MEGA/main.c
parentc4ca86b1c14e4f943636555b17fa14e54b12b881 (diff)
downloadChibiOS-28e2f5256e793232777ae4a4d971d2da490f51a5.tar.gz
ChibiOS-28e2f5256e793232777ae4a4d971d2da490f51a5.tar.bz2
ChibiOS-28e2f5256e793232777ae4a4d971d2da490f51a5.zip
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
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);
}