QUERY · ISSUE
NRF - Disable DCDC?
port-nrf
Is there a way to enable/disable the internal DCDC converter, like
sd_power_dcdc_mode_set(NRF_POWER_DCDC_DISABLE) ?
There are boards that may not come with the external components for dcdc, and I couldn't find from the existing python API anything to deal with this.
CANDIDATE · ISSUE
stmhal: Easy way how to disable internal Flash and/or SD card storage
port-stm32
I would like to have an easy mechanism (build-time option) to disable internal Flash storage so CCM RAM could be used for something else, I'd like to keep SD card storage working.
Thinking more about this I think there could be 3 options altogether:
- (default) both
/flashand/sdstorages are enabled - just
/sdstorage is enabled, CCM RAM could be used for something else - both
/flashand/sdstorages are disabled, one has to freeze the modules and compile them into firmware in order to use them (saving lots of space, as filesystem related stuff can be removed from the firmware completely)
Ideas? Thoughts? Pointers how to do this?