From: klueska Date: Wed, 18 Jun 2008 20:46:45 +0000 (+0000) Subject: Small update to Blink application to make it inline with the nesC based tosthreads... X-Git-Tag: release_tinyos_2_1_0_0~234 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=ebe1183ad1dd082eaba2c16098c0c63a16473dc7 Small update to Blink application to make it inline with the nesC based tosthreads implementation --- diff --git a/apps/tosthreads/capps/Blink/Blink.c b/apps/tosthreads/capps/Blink/Blink.c index ca19ae8d..bcbeee06 100644 --- a/apps/tosthreads/capps/Blink/Blink.c +++ b/apps/tosthreads/capps/Blink/Blink.c @@ -57,7 +57,7 @@ void tosthread_main(void* arg) { void blink0_thread(void* arg) { for(;;) { led0Toggle(); - tosthread_sleep(1000); + tosthread_sleep(200); } }