Boris Lovosevic

Results 80 comments of Boris Lovosevic

Thank you for reporting this. It looks there are some issues when running **BTree** on **spiffs** file system. As spiffs is the default file system type, you are probably using...

Thank you for your contribution. I'm working on some updates which will be commited this month, then I'll merge this PR.

You can simply replace **main.py** and/or **boot.py** in: [MicroPython_ESP32_psRAM_LoBo/MicroPython_BUILD/components/internalfs_image/image/](https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/tree/master/MicroPython_BUILD/components/internalfs_image/image) and then [prepare and flash the filesystem](https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/wiki/filesystems#using-prepared-file-system-images).

I've tried it and it works. It looks like something is wrong with your partition table. The file system was flashed at 0x002b0000 and the FS was mounted at 0x310000....

Never edit partition table (`partitions_mpy.csv`) manualy. If you don't want the partition sizes to be determined automatically, you may use BUILD.sh [options](https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/wiki/build#options). Usualy, it is enough to use **-a** option...

Thank you for the PR. I would propose to make the MicroWebSrv related PRs directly to the original [repository](https://github.com/jczic/MicroWebSrv). I'll look at the proposed SGP30 module. Generally, there are so...

The review of the issues related to the **gc** and **threads** is planed for the 2nd half of this month. I have allready upgraded the **_thread** module and will test...

There was a bug in uart module which could cause the uart buffer corruption after gc collect was run. It is fixed in the latest update.

The support is planned and should be ready in a couple of months.

The interrupts must never be disable for more than the value set in **menuconfig** (default 300 ms): `→ Component config → ESP32-specific → Interrupt watchdog timeout (ms)` Using `machine.disable_irq()` is...