Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
EDUVANCE_WIFI_SHIELD.h@0:c359fee24b6c, 2016-05-28 (annotated)
- Committer:
- gauresh2798
- Date:
- Sat May 28 13:59:48 2016 +0000
- Revision:
- 0:c359fee24b6c
- Child:
- 1:52cad7057640
STATION and AT mode, partially completed
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
gauresh2798 | 0:c359fee24b6c | 1 | #ifndef EDUVANCE_WIFI_SHIELD_H |
gauresh2798 | 0:c359fee24b6c | 2 | #define EDUVANCE_WIFI_SHIELD_H |
gauresh2798 | 0:c359fee24b6c | 3 | #include<mbed.h> |
gauresh2798 | 0:c359fee24b6c | 4 | extern Serial pc; |
gauresh2798 | 0:c359fee24b6c | 5 | extern Serial esp; |
gauresh2798 | 0:c359fee24b6c | 6 | char* getname(char *strd,const char s[2],int part); |
gauresh2798 | 0:c359fee24b6c | 7 | void callback(void); |
gauresh2798 | 0:c359fee24b6c | 8 | void SendCMD(void); |
gauresh2798 | 0:c359fee24b6c | 9 | void getreply(void); |
gauresh2798 | 0:c359fee24b6c | 10 | void ReadWebData(void); |
gauresh2798 | 0:c359fee24b6c | 11 | void ReadWebData_register(void); |
gauresh2798 | 0:c359fee24b6c | 12 | int startserver(void); |
gauresh2798 | 0:c359fee24b6c | 13 | void sendpage(void); |
gauresh2798 | 0:c359fee24b6c | 14 | void sendpage_register(void); |
gauresh2798 | 0:c359fee24b6c | 15 | void SendWEB(void); |
gauresh2798 | 0:c359fee24b6c | 16 | void sendcheck(void); |
gauresh2798 | 0:c359fee24b6c | 17 | void StationConfig(void); |
gauresh2798 | 0:c359fee24b6c | 18 | void ApConfig(void); |
gauresh2798 | 0:c359fee24b6c | 19 | void newcre(char webstring[]); |
gauresh2798 | 0:c359fee24b6c | 20 | void ATcheck(void); |
gauresh2798 | 0:c359fee24b6c | 21 | void ATReset(void); |
gauresh2798 | 0:c359fee24b6c | 22 | void ListAccessPts(void); |
gauresh2798 | 0:c359fee24b6c | 23 | void StationModeSet(void); |
gauresh2798 | 0:c359fee24b6c | 24 | void ApModeSet(void); |
gauresh2798 | 0:c359fee24b6c | 25 | void ConnectWifiServer(void); |
gauresh2798 | 0:c359fee24b6c | 26 | void Commtype(void); |
gauresh2798 | 0:c359fee24b6c | 27 | void StartServer_AT(void); |
gauresh2798 | 0:c359fee24b6c | 28 | void getIP(void); |
gauresh2798 | 0:c359fee24b6c | 29 | void finishup(void); |
gauresh2798 | 0:c359fee24b6c | 30 | void get_ssid_pass(char *ssid_f,char *pass_f,int port_f); |
gauresh2798 | 0:c359fee24b6c | 31 | void setbaudrate(int baud_f); |
gauresh2798 | 0:c359fee24b6c | 32 | void request_fetch_station(void); |
gauresh2798 | 0:c359fee24b6c | 33 | void request_fetch_ap(void); |
gauresh2798 | 0:c359fee24b6c | 34 | #endif |