| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Deassign pins af before assigning. Make uart.any() return the
correct value everytime, this requires interrupts to be always
enabled.
|
|
|
|
|
|
Also remove pin.high() and pin.low() methods.
|
|
Also add relevant test.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The nss param in the pyboard has a different meaning that doesn't
apply to the WiPy.
|
|
Rename "wakes" param to "wake_from" and make "value" an object
instead of an integer.
|
|
|
|
|
|
On the first boot don't add the MAC address, this is to speed up
factory testing.
|
|
|
|
|
|
|
|
|
|
This bug was introduced when renaming '/sflash' to '/flash'.
|
|
The first safe boot level executes the latest firmware but skips
'main.py' and 'boot.py'.
|
|
Key is always entered as a string, but if security is WEP, the key
is converted automatically to hex before connecting or configuring
the device as an AP.
|
|
Changes are based on this post:
https://github.com/micropython/micropython/issues/876#issuecomment-115255551
The constructor can optionally take the same params of iwconfig in
order to configure WiFi when creating the object. Params are
keyworkd only. The WiPy accepts:
- mode (int -> WLAN.AP or WLAN.STA)
- ssdi (string)
- security (int -> WLAN.OPEN, WLAN.WEP, WLAN.WPA, WLAN.WPA2)
- key (string)
- channel (int (1-11))
- antenna (int -> WLAN.INTERNAL, WLAN.EXTERNAL)
|
|
|
|
|
|
|
|
|