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
This commit is contained in:
Theodore Ateba 2017-11-04 10:46:21 +00:00
parent fb6d414856
commit a4b5f16690
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}