You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we should use DSB/ISB instructions after enabling the FPU by writing to SCB->CPACR (in startup_init.c) and switching VTOR by setting SCB->VTOR (insys_utils.c).
It seems that this is not absolutely critical, but we should align with ARM’s recommendations.
The text was updated successfully, but these errors were encountered:
According to the following ARM documentation: https://developer.arm.com/documentation/107565/0101/Memory-system/Memory-barriers/When-do-you-need-a-DSB-followed-by-an-ISB-,
we should use
DSB
/ISB
instructions after enabling the FPU by writing toSCB->CPACR
(instartup_init.c
) and switching VTOR by settingSCB->VTOR
(insys_utils.c
).It seems that this is not absolutely critical, but we should align with ARM’s recommendations.
The text was updated successfully, but these errors were encountered: