Change all time conversions. Yech. New timer units in microseconds breaks all existing logic that used milliseconds in the conversions. Something likely got broken doing this, probably because I confused a MSEC2TICK conversion with a TICK2MSEC conversion. Also, the tickless OS no appears fully functional and passes the OS test on the simulator with no errors

This commit is contained in:
Gregory Nutt 2014-08-07 18:00:38 -06:00
parent b651f37ce7
commit d764356359
2 changed files with 2 additions and 2 deletions

View File

@ -322,7 +322,7 @@ static int user_main(int argc, char *argv[])
#endif
#ifdef CONFIG_ARCH_FPU
/* Check that the FPU is properly supported during context switching */
/* Check that the FPU is properly supported during context switching */
printf("\nuser_main: FPU test\n");
fpu_test();

View File

@ -189,5 +189,5 @@ void restart_test(void)
sleep(1);
}
printf("restart_main: Exitting\n");
printf("restart_main: Exiting\n");
}