Base library for various projects.

Dependents:   LEDFun NetTester

Base library for various projects.

Committer:
Searle95
Date:
Thu Aug 01 12:14:19 2013 +0000
Revision:
2:a3deb705b78e
Parent:
1:a5f21c409f51
Added in a system restart at the end of cycle, version variable added for ease and minor timing changes. Version updated to 1.05.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Searle95 0:a2d01ba1a81b 1 #ifndef VARIABLES_H
Searle95 0:a2d01ba1a81b 2 #define VARIABLES_H
Searle95 0:a2d01ba1a81b 3
Searle95 1:a5f21c409f51 4 #include "EthernetInterface.h"
Searle95 1:a5f21c409f51 5 #include "mbed.h"
Searle95 1:a5f21c409f51 6
Searle95 1:a5f21c409f51 7 extern Ethernet eth;
Searle95 1:a5f21c409f51 8 extern EthernetInterface eth1;
Searle95 1:a5f21c409f51 9 extern int contrast;
Searle95 1:a5f21c409f51 10 extern char buf[0x600];
Searle95 1:a5f21c409f51 11 extern int packets;
Searle95 0:a2d01ba1a81b 12 extern int loading_loop;
Searle95 0:a2d01ba1a81b 13 extern int loading_line;
Searle95 2:a3deb705b78e 14 extern double version;
Searle95 0:a2d01ba1a81b 15
Searle95 0:a2d01ba1a81b 16 #endif