-
Got the crash below using:
- micropython-camera-driver f56e12a587456d4371ecbd6601b3889e636896f8
- micropython tag: v1.18
- esp-idf-v4.3.1 tag: v4.3.1
- esp32-camera tag: v2.0.0
The crash was i…
-
If the 3rd argument of pow is set as 0, micropython crashes. See the following example:
test.py
```
for a in range(5):
exp = int((a - 1) / 2)
exp = pow(a, a, exp)
print(exp)
``…
-
I am building micropython master locally and then flashing it to my esp32, however no umqtt module exists.
```
ImportError: no module named 'umqtt'
```
Build Command
```
cd ports/esp32
. ~/…
-
As there is no pre-built firmware available, and there are quite a few build dependencies, I think it would be nice to include that and lower the barrier to entry. If there is any interest, I would be…
-
The following 'test.py' produces a crash with the unix port. In this example, we clear the dic when defining the dic, then micropython crashes.
test.py
```
class S(str):
def __eq__(self, …
-
Passing a keyword argument to a subclass of the built-in class "set" causes a crash. See the following example.
test.py
```
class Test(set):
def __init__(self, a=0):
self.add(a)
…
-
This commit assumes that all modules are C-only modules, with fairly explicit control over malloc/free - https://github.com/micropython/micropython/commit/c80e7c14e6305e50e3b39f97172d4d8fe1214d3b
T…
-
On the STM32 port in commit 370a8116c4348a849c2dafb2c90fa5ba12b8c5dc OTP memory is used to store the MAC address of the pyboard. I love this! I intend to store a serial number into the OTP area as w…
-
I am trying to get the raspberry pi pico working on OpenBSD. I have gotten the firmware onto the pico and got minicom to work; However rshell is unable to connect.
```
Welcome to minicom 2.8
OP…
-
Suppose that
- I'm the security conscious type and not comfortable with random strangers being able to run Python on my watch (and modify state) without authentication (or set my watch, or snoop on m…