… obligatory 40 Chars? …
Thank you,
will give a try and report.
Juergen
One hint:
Making Arduino- directory writable, but that will be a real dirty dirty solution:
With another question: isn’t pulling RESET enough? Download via FTDI-Adapter on COM15.
Using the original bootloader delivered with the board
*C:\Users\js\Documents\Arduino\hardware\w600/wmtools/upload.bat C:\Users\js\Documents\Arduino\hardware\w600/wmtools COM15 115200 C:\Users\js\AppData\Local\Temp\arduino_build_21272/sketch_apr16a.ino.gz.img *
Current Python main version is not 3, Use binary to upgrade the firmware.
Serial open success! com: COM15, baudrate: 115200.
Waiting for restarting device …
Start send ESC thread.
Start serial read thread.
Start restart thread.
First try cycle…
Try to open Serial with baud speed: 115200…
Try to re-open Serial with baud speed: 230400…
Try to re-open Serial with baud speed: 460800…
Try to re-open Serial with baud speed: 921600…
Try to re-open Serial with baud speed: 1000000…
Try to re-open Serial with baud speed: 1500000…
Try to re-open Serial with baud speed: 2000000…
Try to re-open Serial with baud speed: 9600…
Try to re-open Serial with baud speed: 19200…
Try to re-open Serial with baud speed: 38400…
Try to re-open Serial with baud speed: 57600…
Second try cycle…
Try to open Serial with baud speed: 115200…
Try to re-open Serial with baud speed: 230400…
Try to re-open Serial with baud speed: 460800…
Try to re-open Serial with baud speed: 921600…
Try to re-open Serial with baud speed: 1000000…
Try to re-open Serial with baud speed: 1500000…
Try to re-open Serial with baud speed: 2000000…
Try to re-open Serial with baud speed: 9600…
Try to re-open Serial with baud speed: 19200…
Try to re-open Serial with baud speed: 38400…
Try to re-open Serial with baud speed: 57600…
Third try cycle…
Try to open Serial with baud speed: 115200…
Try to re-open Serial with baud speed: 230400…
Try to re-open Serial with baud speed: 460800…
Try to re-open Serial with baud speed: 921600…
Try to re-open Serial with baud speed: 1000000…
Try to re-open Serial with baud speed: 1500000…
Try to re-open Serial with baud speed: 2000000…
Try to re-open Serial with baud speed: 9600…
Try to re-open Serial with baud speed: 19200…
Try to re-open Serial with baud speed: 38400…
Try to re-open Serial with baud speed: 57600…
!!! PLEASE BURN FIRMWARE MANUALLY !!!
[E] OFFline Serial COM15
An error occurred while uploading the sketch
Manually uploaded Micropython-Image works:
CCConnecting to COM15…
>>>
>>>
>>> help()
Welcome to MicroPython on the W600!
For generic online docs please visit http://docs.micropython.org/
For access to the hardware use the ‘machine’ module:
import machine
pb26 = machine.Pin(machine.Pin.PB_26, machine.Pin.OUT, machine.Pin.PULL_DOWN)
pb26.value(1)
pb27 = machine.Pin(machine.Pin.PB_27, machine.Pin.IN, machine.Pin.PULL_UP)
print(pb27.value())
Basic WiFi configuration:
import network
sta_if = network.WLAN(network.STA_IF)
sta_if.active(True)
sta_if.scan() # Scan for available access points
sta_if.connect("<AP_name>", “”) # Connect to an AP
sta_if.isconnected() # Check for successful connection
Control commands:
- CTRL-A – on a blank line, enter raw REPL mode*
- CTRL-B – on a blank line, enter normal REPL mode*
- CTRL-C – interrupt a running program*
- CTRL-D – on a blank line, do a soft reset of the board*
- CTRL-E – on a blank line, enter paste mode*
For further help on a specific object, type help(obj)
For a list of available modules, type help(‘modules’)
>>>
I expect that this uploaded image should be overwritten by the Arduino-generated image.
Will try to use other wmload-version …
regards,
juergen