Ibrahim Abdelkader

Results 147 comments of Ibrahim Abdelkader

Hi, I'd like to share some random thoughts on this feature: * Can we have a more convenient C API ? Actual use case: I want to add binary blobs...

> I did want to add a way for user Python code to memory map a file and get its address in flash/ROM Actually I just realized that if I...

Sorry if I've missed this in the discussion, but did you consider the case where a frozen module adds bits/extends a built-in module ? For example if `foo` module in...

Hi, should this be enabled by default for every STM board, including ones that don't even use the internal flash storage for the filesystem ?

> I did not follow the discussion about whether that was implemented. It was implemented, but it was never merged. I kept the commit that adds it here: https://github.com/micropython/micropython/pull/7402/commits/35895830e6f5052cd2d09ffe312267e6c8afbd4d if...

Hi @ALABSTM I haven't changed any option bits, but I'll check anyway and get back to you as soon as I can. However, if I understand correctly, that option when...

@ALABSTM Hi, sorry for the delay, I just checked and all the option bits seem to be set to their defaults.. NRST_STDY_D1 is set to 1 in `FLASH->OPTSR_CUR` which has...

@ALABSTM Hi, no, no progress unfortunately, for now I just added a `NVIC_SystemReset();` after EnterStandby so when the CM7 wakes up it resets... the power consumption is not ideal in...

Hi, I'm good and thanks for the update! We're using an older HAL I think, but I can patch it and test again. I don't have the hardware with me...

Hi, this will only work if 1 EXTI is set: > ```diff > + pExtiConfig->GPIOSel = ((regval >> (SYSCFG_EXTICR1_EXTI1_Pos * ((linepos & 0x03u))))); > ``` `regval` needs to be masked...