You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 24, 2019. It is now read-only.
To run this application using ESP8266 WiFi Interface, you need:
162
162
@@ -210,31 +210,31 @@ This should resolve the issue:
210
210
```bash
211
211
cp configs/wifi_odin_v4.json mbed_app.json
212
212
<use your favourite editor to modify mbed_app.json for WiFi details>
213
-
cp configs/eth-wifi-mbedignore ./.mbedignore
213
+
cp configs/mesh-mbedignore ./.mbedignore
214
214
```
215
215
216
-
#### Compile configuration for Nucleo F401RE and X-Nucleo WiFi
216
+
#### Compile configuration for STM `X-NUCLEO-IDW0XX1` WiFi expansion boards
217
217
218
-
To compile Nucleo X WiFi configuration, you need to tell mbed NOT to compile mesh files for example. To do that, set up a `.mbedignore` file. An example file is available in the `configs` folder.
218
+
To compile STM X-NUCLEO WiFi configuration, you need to tell mbed NOT to compile mesh files for example. To do that, set up a `.mbedignore` file. Example files are available in the `configs` folder.
219
219
220
-
This should resolve the issue:
220
+
This should resolve the issue (example for `X-NUCLEO-IDW01M1`):
221
221
222
222
```bash
223
223
cp configs/wifi_idw01m1_v4.json mbed_app.json
224
224
<use your favourite editor to modify mbed_app.json for WiFi details>
225
-
cp configs/wifi-idw0xx1-mbedignore ./.mbedignore
225
+
cp configs/mesh-mbedignore ./.mbedignore
226
226
```
227
227
228
-
Depending on which Wifi-module you have, you might have to change the module type in the `.json`file `target-overrides` section.
228
+
Depending on which WiFi module you have, you might have to change the module type in the `.json`file's`target-overrides` section.
229
229
230
230
```json
231
-
"idw0x11": {
232
-
"expansion.board": "IDW01M1"
233
-
}
231
+
"idw0xx1.expansion-board": "IDW01M1",
232
+
"drivers.uart-serial-txbuf-size": 730,
233
+
"drivers.uart-serial-rxbuf-size": 730
234
234
```
235
-
Options are: `IDW01M1`is the Morph form-factor board and `IDW04A1` is the Arduino form-factor board. The label is clearly printed on the PCB.
235
+
Options are: `IDW01M1`, which is the Morpho form-factor board, and `IDW04A1`, which is the Arduino form-factor board. The label is clearly printed on the PCB.
236
236
237
-
If you have issues with the `IDW04A1` board you might have to define also a macro `IDW04A1_WIFI_HW_BUG_WA`. This can be added to the same `.json`file to the `macros:` section.
237
+
If you have issues with the `IDW04A1` board you might have to define also macro `IDW04A1_WIFI_HW_BUG_WA`. This can be added to the `macros` section of the same `.json` file.
0 commit comments