git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5708 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2013-05-11 10:20:48 +00:00
parent 50fe4f680f
commit 75628f0e79
1 changed files with 2 additions and 1 deletions

View File

@ -128,7 +128,7 @@ public:
class TesterThread : public BaseStaticThread<256> {
protected:
virtual msg_t Main(void) {
virtual msg_t main(void) {
setName("tester");
@ -192,6 +192,7 @@ int main(void) {
tester.start(NORMALPRIO);
tester.wait();
};
BaseThread::sleep(MS2ST(500));
}
return 0;