diff --git a/ports/cc3200/README.md b/ports/cc3200/README.md index a9fd5ba0584ab..d8adc67558dab 100644 --- a/ports/cc3200/README.md +++ b/ports/cc3200/README.md @@ -75,7 +75,7 @@ Flashing process using TI Uniflash: Once the software is running, you have two options to access the MicroPython REPL: - Through telnet. - * Connect to the network created by the board (as boots up in AP mode), **ssid = "mpy-toniebox", key = ""**. + * Connect to the network created by the board (as boots up in AP mode), **ssid = "mpy-toniebox-RevvoX", key = "TeamRevvoX"**. * You can also reinitialize the WLAN in station mode and connect to another AP, or in AP mode but with a different ssid and/or key. * Use your favourite telnet client with the following settings: **host = 192.168.1.1, port = 23.** diff --git a/ports/cc3200/mpconfigport.h b/ports/cc3200/mpconfigport.h index 6eba4ac850f0a..9880541b1f83b 100644 --- a/ports/cc3200/mpconfigport.h +++ b/ports/cc3200/mpconfigport.h @@ -219,8 +219,8 @@ typedef long mp_off_t; #ifdef TONIEBOX #define MICROPY_PY_SYS_PLATFORM "Toniebox (CC3200)" -#define MICROPY_PORT_WLAN_AP_SSID "mpy-toniebox" -#define MICROPY_PORT_WLAN_AP_KEY "" +#define MICROPY_PORT_WLAN_AP_SSID "mpy-toniebox-RevvoX" +#define MICROPY_PORT_WLAN_AP_KEY "TeamRevvoX" #endif #ifndef TONIEBOX #define MICROPY_PY_SYS_PLATFORM "WiPy"