Ibrahim Abdelkader
Ibrahim Abdelkader
This patch allows a sub-class to override a property setter and call the base class's property setter. Without this, the workaround would be to access what should be a private...
* Add support for all format specifiers, support for `datefmt` using strftime, and support for Stream and File handlers. * Ports/boards that need to use `FileHandlers` should enable `MICROPY_PY_SYS_ATEXIT`, and...
VBUS and VIN are both connected to the LDO input, but only VBUS has a diode, if VIN is connected to a lower voltage power supply, say a battery, while...
I have a minimal application based on the STM32H747I-DISCO PWR_STANDBY_RTC example.. This is how it works: 1. CM7 does basic initialization, and boots CM4. 2. CM4 configures HSEM, go to...
* Support returning SPI45 peripheral clock frequency.
**Describe the bug** SPI45 does Not have a `PCLK1` clock source, it should `PCLK2` (and `D2PCLK2`). You can see that in CubeMX, the first clock source in the MUX is...
This PR adds support for OpenAMP in MicroPython, with the goal of standardizing asymmetric multi-core support across different hardware running MicroPython. There are 3 major components to OpenAMP, `libmetal`, `remoteproc`...
MicroPython's senml module conflicts with https://pypi.org/project/senml/ when it's installed on PC (with pip) it overwrites/gets merged with pypi's senml module, so it needs to be renamed. We originally assumed that...
Just run this very simple sketch: ```C uint32_t ticks = 0; uint32_t timeout = 0; void setup() { // put your setup code here, to run once: Serial.begin(9600); while (!Serial)...