-
" But in this case, it does seem like a bit of a bug that should also be fixed in MicroPython."
https://forum.micropython.org/viewtopic.php?f=12&t=9061&sid=61e7d19e860522ffa52fa6ceaa927f65#p51114
…
-
Since `struct`s cannot be redefined, attempting to do so currently gives a `failure to evaluate changes` warning.
I wonder if this can be worked around by triggering a reload of the entire module i…
tpapp updated
3 years ago
-
You should use packed structs for mmio instead of normal structs, since normal structs don't have a in-memory defined layout and the compiler is allowed to change the order of fields for performance o…
-
```rust
struct Point2D {
x: i32,
y: i32,
}
struct Point3D {
..Point2D$0
z: i32,
}
```
Expands to:
```rust
struct Point2D {
x: i32,
y: i32,
}
struct Point3D {
x: i32,
…
-
-
During testing imgtool I recognized that `python imgtool.py dumpinfo ...` crashes with following error:
````
Traceback (most recent call last):
File "C:\temp\mcuboot\scripts\imgtool.py", line 2…
dhMat updated
2 months ago
-
As a workaround, in #1861 the `Io::new_no_bind_interrupt` constructor was added to allow initializing the `Io` struct _without_ binding the `GPIO` interrupt.
This is a bit of a footgun, and is too …
-
### Description
Feather autocomplete tooltips will stop giving suggestions when trying to reference a struct variable after the function is called. Above it works as expected.
e.g.,
![image](http…
-
### Is your feature request related to a problem?
Why do I need to add all of these just to get a particle system on a track?
self.activeTracks[0].track.keyframes[0].channels[0].particleSystemInde…
-
### Is your feature request related to a problem?
the problem is that ds maps have goofy syntax and structs are just better,
### Describe the solution you'd like
it would be nice if you could just …