Search found 54 matches

by JumpZero
Wed Jul 27, 2022 11:01 am
Forum: Raspberry Pi microcontroller boards
Topic: webrepl on the pico w ?
Replies: 9
Views: 6490

Re: webrepl on the pico w ?

Oh! Sorry I misunderstood. Because the last modification ( PR #8931 ) is included in the ESP8266 port, I thought that the choice about the following point ( #8928 ) had been done, in favor of the first option. We need to decide: Should we freeze the webrepl Python files on all boards that include th...
by JumpZero
Tue Jul 26, 2022 2:08 pm
Forum: Raspberry Pi microcontroller boards
Topic: webrepl on the pico w ?
Replies: 9
Views: 6490

Re: webrepl on the pico w ?

Several days ago I saw that pull request #8931 had been merged. But there was still no webrepl on nightly builds for picoW. I thought we had to wait some more. But in fact today I saw that it works well on ESP8266 and as expected by this pull request (by entering http://board_ip_address:8266/ in the...
by JumpZero
Tue Jul 19, 2022 8:10 am
Forum: Raspberry Pi microcontroller boards
Topic: webrepl on the pico w ?
Replies: 9
Views: 6490

Re: webrepl on the pico w ?

Thank you @jimmo
by JumpZero
Mon Jul 18, 2022 5:31 pm
Forum: Raspberry Pi microcontroller boards
Topic: webrepl on the pico w ?
Replies: 9
Views: 6490

Re: webrepl on the pico w ?

Hi! I noticed that today's nightly build for the picoW v1.19.1.169 can run webrepl by adding these 3 python files: webrepl.py webrepl_setup.py websocket_helper.py They are located in micropython/extmod/webrepl and must be copied in the picow root directory or in /lib. So even if they are not yet fro...
by JumpZero
Mon Jul 18, 2022 11:39 am
Forum: Raspberry Pi microcontroller boards
Topic: No USB filesystem after installing MIcroPython bootloader
Replies: 9
Views: 4903

Re: No USB filesystem after installing MIcroPython bootloader

Roberthh wrote:
Mon Jul 18, 2022 10:01 am
It os not possible for ESP8266 and ESP32, because they connect through a usb/uart bridge. Only ESP32-C3 may be possible, because it has built-in USB. But someone has to port the code for MSC support.
But yes of course, I had forgotten this CH340/CH341 bridge. Of course it's hardware limitation.
by JumpZero
Mon Jul 18, 2022 9:38 am
Forum: Raspberry Pi microcontroller boards
Topic: No USB filesystem after installing MIcroPython bootloader
Replies: 9
Views: 4903

Re: No USB filesystem after installing MIcroPython bootloader

I have tested it for the rp2/PICO and it works very well. I have tested both FAT and littleFS. As you mentioned to enable mass storage I have uncommented the line #define MICROPY_HW_USB_MSC (1) in the board's mpyconfigboard.h then build a new firmware. This build defaults to FAT filesystem. To build...
by JumpZero
Sun Jul 17, 2022 11:21 am
Forum: Raspberry Pi microcontroller boards
Topic: No USB filesystem after installing MIcroPython bootloader
Replies: 9
Views: 4903

Re: No USB filesystem after installing MIcroPython bootloader

Thanks Roberthh I understand now
I'm gonna try that. I'll report here.
Have a good day
by JumpZero
Sat Jul 16, 2022 3:29 pm
Forum: Raspberry Pi microcontroller boards
Topic: No USB filesystem after installing MIcroPython bootloader
Replies: 9
Views: 4903

Re: No USB filesystem after installing MIcroPython bootloader

P.S.: For Linux system, Littlefs support is available as a fuse file system Oh! This caught my attention. I would love to be able to access the micropython filesystem from Linux. I searched the documentation and actually found here this: A littlefs filesystem can be still be accessed on a PC over U...
by JumpZero
Mon Jul 11, 2022 12:32 pm
Forum: Raspberry Pi microcontroller boards
Topic: webrepl on the pico w ?
Replies: 9
Views: 6490

Re: webrepl on the pico w ?

Yes it works 👍
I have recompiled with the files modified as per your pull request and successfully ran webrepl.
And accessed repl remotely via wifi.
😀
Great
Webrepl is really a micropython super feature
by JumpZero
Mon Jul 11, 2022 10:16 am
Forum: Raspberry Pi microcontroller boards
Topic: webrepl on the pico w ?
Replies: 9
Views: 6490

Re: webrepl on the pico w ?

That's a good news.
Thank you very much @jimmo