-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnlockedFlash: support PSIZE_X32 #597
Comments
Does it mean |
Ideally the
|
Should something like fff9621 be enough? |
I gave that a try and it's not enough. Using that with X8 works. For X16/X32 erasing works (and is faster), but Looks like Line 262 in fff9621
PSIZE is configured to X16/X32/X64.
|
This is what I asked about.
P.S. Also different chips have different sector map that looks missed in current implementation. |
I think ideally the |
ST Refernce Manual RM0090 suggests using
PSIZE_X64
when external Vpp is applied,PSIZE_X32
when voltage is between 2.7V and 3.6V,PSIZE_X16
when voltage is between 2.1V and 2.7V andPSIZE_X8
is between 1.8V and 2.1V.UnlockedFlash
currently only supportsPSIZE_X8
.Since 3.3V is a common voltage and writing 32bits instead of 8bits speeds up things a lot, I would like to see support for it.
The text was updated successfully, but these errors were encountered: