From 9032cb5a184ecf8923e0e5046bafaa19da511898 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 21 May 2008 20:32:29 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@304 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c | 4 ++-- readme.txt | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c b/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c index c99813fe8..127304295 100644 --- a/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c +++ b/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c @@ -119,8 +119,8 @@ msg_t WebThread(void *p) { /* * uIP initialization. */ - timer_set(&periodic_timer, 500); - timer_set(&arp_timer, 10000); + timer_set(&periodic_timer, CLOCK_SECOND / 2); + timer_set(&arp_timer, CLOCK_SECOND * 10); uip_init(); uip_setethaddr(macaddr); uip_ipaddr(ipaddr, IPADDR0, IPADDR1, IPADDR2, IPADDR3); diff --git a/readme.txt b/readme.txt index ba303b029..3e09a40a0 100644 --- a/readme.txt +++ b/readme.txt @@ -15,6 +15,8 @@ directory under ./demos/ and/or ./ports/. ./ports/ - Architecture specific portable files. ./demos/ - Demo programs for specific archtectures/boards. +./ext/ - External libraries or other code not part of + ChibiOS/RT but used in the demo applications. ./test/ - Test code, used by some demos. ./docs/Doxifile - Doxigen project file. ./docs/html/index.html - ChibiOS/RT documentation (after running doxigen). -- cgit v1.2.3