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.
Dependencies: C12832_fix LM75B MMA7660 MQTT PowerControl SNICInterface mbed-rtos mbed
Fork of IBMIoTClientWifiExample by
WiFi_Config.h@18:ff8b191de621, 2015-03-25 (annotated)
- Committer:
- MACRUM
- Date:
- Wed Mar 25 10:44:55 2015 +0000
- Revision:
- 18:ff8b191de621
- Parent:
- 17:e921a54608ad
- Child:
- 21:f243f013aeda
Now, moves to original MQTT library
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| MACRUM | 17:e921a54608ad | 1 | |
| MACRUM | 17:e921a54608ad | 2 | #if !defined(WIFI_CONFIG_H) |
| MACRUM | 17:e921a54608ad | 3 | #define WIFI_CONFIG_H |
| MACRUM | 17:e921a54608ad | 4 | |
| MACRUM | 17:e921a54608ad | 5 | #include "mbed.h" |
| MACRUM | 17:e921a54608ad | 6 | |
| MACRUM | 18:ff8b191de621 | 7 | #define DEMO_AP_SSID "SSID" |
| MACRUM | 17:e921a54608ad | 8 | #define DEMO_AP_SECURITY_TYPE e_SEC_WPA2_AES |
| MACRUM | 18:ff8b191de621 | 9 | #define DEMO_AP_SECUTIRY_KEY "PASSWORD" |
| MACRUM | 17:e921a54608ad | 10 | |
| MACRUM | 17:e921a54608ad | 11 | #if defined(TARGET_ARCH_PRO) || defined(TARGET_RZ_A1H) |
| MACRUM | 17:e921a54608ad | 12 | // for mbed Application Shield |
| MACRUM | 17:e921a54608ad | 13 | #define WIFI_TX D1 |
| MACRUM | 17:e921a54608ad | 14 | #define WIFI_RX D0 |
| MACRUM | 17:e921a54608ad | 15 | #define WIFI_CTS NC |
| MACRUM | 17:e921a54608ad | 16 | #define WIFI_RTS NC |
| MACRUM | 17:e921a54608ad | 17 | #define WIFI_RESET D3 |
| MACRUM | 17:e921a54608ad | 18 | #define WIFI_ALARM NC |
| MACRUM | 17:e921a54608ad | 19 | |
| MACRUM | 17:e921a54608ad | 20 | #elif defined(TARGET_LPC1768) |
| MACRUM | 17:e921a54608ad | 21 | // for mbed Application board |
| MACRUM | 17:e921a54608ad | 22 | #define WIFI_TX p9 |
| MACRUM | 17:e921a54608ad | 23 | #define WIFI_RX p10 |
| MACRUM | 17:e921a54608ad | 24 | #define WIFI_CTS NC |
| MACRUM | 17:e921a54608ad | 25 | #define WIFI_RTS NC |
| MACRUM | 17:e921a54608ad | 26 | #define WIFI_RESET p30 |
| MACRUM | 17:e921a54608ad | 27 | #define WIFI_ALARM NC |
| MACRUM | 17:e921a54608ad | 28 | |
| MACRUM | 17:e921a54608ad | 29 | #endif |
| MACRUM | 17:e921a54608ad | 30 | |
| MACRUM | 17:e921a54608ad | 31 | #define WIFI_BAUD 115200 |
| MACRUM | 17:e921a54608ad | 32 | |
| MACRUM | 17:e921a54608ad | 33 | #endif |
