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_ARCH_PERF_H__
ED7418 0:51f1ef89ec7b 6 #define __LWIP_ARCH_PERF_H__
ED7418 0:51f1ef89ec7b 7
ED7418 0:51f1ef89ec7b 8 #define PERF_START
ED7418 0:51f1ef89ec7b 9 #define PERF_STOP(x)
ED7418 0:51f1ef89ec7b 10
ED7418 0:51f1ef89ec7b 11 #define perf_init(fname)
ED7418 0:51f1ef89ec7b 12
ED7418 0:51f1ef89ec7b 13 #if 0
ED7418 0:51f1ef89ec7b 14 #ifdef __cplusplus
ED7418 0:51f1ef89ec7b 15 inline
ED7418 0:51f1ef89ec7b 16 #endif
ED7418 0:51f1ef89ec7b 17 void perf_init(char *fname) {
ED7418 0:51f1ef89ec7b 18 return;
ED7418 0:51f1ef89ec7b 19 }
ED7418 0:51f1ef89ec7b 20 #endif
ED7418 0:51f1ef89ec7b 21
ED7418 0:51f1ef89ec7b 22
ED7418 0:51f1ef89ec7b 23 #endif /* __LWIP_ARCH_PERF_H__ */