Small Testprogram to have WebAccess via Webserver to a 433Mhz tranmitter to control remotly some devices from remote, with TFTP, NTP and RMF. This could be a base to develop applications.

Dependencies:   ChaNFSSD TFTPServer RMFWeb

Dependents:   RMFWeb

Committer:
ED7418
Date:
Mon Jun 16 07:40:08 2014 +0000
Revision:
1:809b59c7a800
Parent:
0:51f1ef89ec7b
mbed-lib and other libs are a based on a project, published in a Elektor-book "ARM-microkontroller Part II".

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ED7418 0:51f1ef89ec7b 1 /*
ED7418 0:51f1ef89ec7b 2 * Author: Adam Dunkels <adam@sics.se>
ED7418 0:51f1ef89ec7b 3 *
ED7418 0:51f1ef89ec7b 4 */
ED7418 0:51f1ef89ec7b 5 #ifndef __LWIP_SYS_ARCH_H__
ED7418 0:51f1ef89ec7b 6 #define __LWIP_SYS_ARCH_H__
ED7418 0:51f1ef89ec7b 7
ED7418 0:51f1ef89ec7b 8 typedef unsigned int u32_t;
ED7418 0:51f1ef89ec7b 9
ED7418 0:51f1ef89ec7b 10 #ifdef __cplusplus
ED7418 0:51f1ef89ec7b 11 extern "C" {
ED7418 0:51f1ef89ec7b 12 #endif
ED7418 0:51f1ef89ec7b 13
ED7418 0:51f1ef89ec7b 14 //DG 2010
ED7418 0:51f1ef89ec7b 15 void sys_init(void); /* To be called first */
ED7418 0:51f1ef89ec7b 16 u32_t sys_jiffies(void); /* since power up. */
ED7418 0:51f1ef89ec7b 17
ED7418 0:51f1ef89ec7b 18 /** Returns the current time in milliseconds,
ED7418 0:51f1ef89ec7b 19 * may be the same as sys_jiffies or at least based on it. */
ED7418 0:51f1ef89ec7b 20 u32_t sys_now(void);
ED7418 0:51f1ef89ec7b 21
ED7418 0:51f1ef89ec7b 22 #ifdef __cplusplus
ED7418 0:51f1ef89ec7b 23 }
ED7418 0:51f1ef89ec7b 24 #endif
ED7418 0:51f1ef89ec7b 25
ED7418 0:51f1ef89ec7b 26
ED7418 0:51f1ef89ec7b 27 #endif /* __LWIP_ARCH_CC_H__ */