@@ -18,11 +18,9 @@ Before applying power
1818
1919 The GPIO pins of the WiPy are NOT 5V tolerant, connecting them to voltages higer
2020 than 3.6V will cause irreparable damage to the board. ADC pins, when configured
21- in analog mode cannot withstand volatges above 1.8V. Keep these considerations in
21+ in analog mode cannot withstand voltages above 1.8V. Keep these considerations in
2222 mind when wiring your electronics.
2323
24-
25-
2624WLAN default behaviour
2725----------------------
2826
@@ -33,29 +31,43 @@ to gain access to the interactive prompt, open a telnet session to that IP addre
3331the default port (23). You will be asked for credentials:
3432``login: micro `` and ``password: python ``
3533
36- Local file system and SD card
37- -----------------------------
34+ Telnet REPL
35+ -----------
36+
37+ Linux stock telnet works like a charm (also on OSX), but other tools like putty
38+ work quite too. The default credentials are: **user: ** ``micro ``, **password: ** ``python ``.
39+ See :ref: `network.server <network.server >` for info on how to change the defaults.
40+ For instance, on a linux shell (when connected to the WiPy in AP mode)::
41+
42+ $ telnet 192.168.1.1
43+
44+ Local file system and FTP access
45+ --------------------------------
3846
3947There is a small internal file system (a drive) on the WiPy, called ``/flash ``,
4048which is stored within the external serial flash memory. If a micro SD card
41- is hooked-up and enabled , it is available as `` /sd `` .
49+ is hooked-up and mounted , it will be available as well .
4250
43- When the WiPy boots up, it always boots from the ``boot.py `` located in the
44- ``/flash `` file system. If during the boot process the SD card is enabled and
45- it's selected as the current drive then the WiPy will try to execute ``main.py ``
46- that should be located in the SD card.
51+ When the WiPy starts up, it always boots from the ``boot.py `` located in the
52+ ``/flash `` file system.
4753
4854The file system is accessible via the native FTP server running in the WiPy.
4955Open your FTP client of choice and connect to:
5056
51- ``ftp://192.168.1.1 ``, ``user: micro ``, ``password: python ``
57+ **url: ** ``ftp://192.168.1.1 ``, **user: ** ``micro ``, **password: ** ``python ``
58+
59+ See :ref: `network.server <network.server >` for info on how to change the defaults.
60+ The recommended clients are: Linux stock FTP (also in OSX), Filezilla and FireFTP.
61+ For example, on a linux shell::
62+
63+ $ ftp 192.168.1.1
5264
53- The FTP server on the WiPy doesn't support active mode, only passive, so for instance
54- if using the native unix ftp client, just after logging in::
65+ The FTP server on the WiPy doesn't support active mode, only passive, therefore,
66+ if using the native unix ftp client, just after logging in do ::
5567
5668 ftp> passive
5769
58- Besides that, the FTP server only supports onw data connection at a time. Check out
70+ Besides that, the FTP server only supports one data connection at a time. Check out
5971the Filezilla settings section below for more info.
6072
6173FileZilla settings
@@ -74,16 +86,17 @@ Upgrading the firmware Over The Air
7486
7587OTA software updates can be performed through the FTP server. Upload the ``mcuimg.bin `` file
7688to: ``/flash/sys/mcuimg.bin `` it will take around 6s. You won't see the file being stored
77- inside ``/flash/sys/ `` because it's actually saved bypassing the user file system, but rest
78- assured that it was successfully transferred, and it has been signed with a MD5 checksum to
79- verify its integrity. Now, reset the MCU by pressing the switch on the board, or by typing::
89+ inside ``/flash/sys/ `` because it's actually saved bypassing the user file system, so it
90+ ends up inside the internal **hidden ** file system, but rest assured that it was successfully
91+ transferred, and it has been signed with a MD5 checksum to verify its integrity. Now, reset
92+ the WiPy by pressing the switch on the board, or by typing::
8093
8194 import machine
8295 machine.reset()
8396
8497Software updates can be found in: https://github.com/wipy/wipy/releases
8598It's always recommended to update to the latest software, but make sure to
86- read the `` release notes `` before.
99+ read the ** release notes ** before.
87100
88101Boot modes
89102----------
0 commit comments