aboutsummaryrefslogtreecommitdiffstats
path: root/demos/AVR
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-11-04 10:46:21 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-11-04 10:46:21 +0000
commita4b5f16690659eb74f83392cc336038c00c36fd1 (patch)
tree20561084936585b3972e632c5a87f5422db1b84b /demos/AVR
parentfb6d414856320349c74d6ac3e9925977347ebb04 (diff)
downloadChibiOS-a4b5f16690659eb74f83392cc336038c00c36fd1.tar.gz
ChibiOS-a4b5f16690659eb74f83392cc336038c00c36fd1.tar.bz2
ChibiOS-a4b5f16690659eb74f83392cc336038c00c36fd1.zip
AVR: Add the os lib test suite part to the AVR Mega demo.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10933 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/AVR')
-rw-r--r--demos/AVR/RT-ARDUINO-MEGA/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/AVR/RT-ARDUINO-MEGA/main.c b/demos/AVR/RT-ARDUINO-MEGA/main.c
index 7cd6b98c5..8380124b7 100644
--- a/demos/AVR/RT-ARDUINO-MEGA/main.c
+++ b/demos/AVR/RT-ARDUINO-MEGA/main.c
@@ -58,6 +58,8 @@ 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);
}