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
This issue suggests a minor improvement to the SDRAM initialization code:
sdram_init() function should reside in its own .c file and not be mixed with the ST BSP SDRAM driver code.
sdram_init() should be called from system_init() or preferably from the SystemInit() function, rather than directly from the boardloader’s main() function.
Although this function is used only on one of the discovery kits, it introduces an unnecessary dependency and adds unnecessary complexity to the code.
The text was updated successfully, but these errors were encountered:
This issue suggests a minor improvement to the SDRAM initialization code:
sdram_init()
function should reside in its own .c file and not be mixed with the ST BSP SDRAM driver code.sdram_init()
should be called fromsystem_init()
or preferably from theSystemInit()
function, rather than directly from the boardloader’smain()
function.Although this function is used only on one of the discovery kits, it introduces an unnecessary dependency and adds unnecessary complexity to the code.
The text was updated successfully, but these errors were encountered: