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
* Added required user defined callback for internal flash physical layer:
DRV_FILEIO_INTERNAL_FLASH_CONFIG_UNLOCK_VERIFICATION_FUNCTION. This function should validate that
the system parameters are valid for flash writes on the device on the board (Vdd, clock speeds, etc. are all in valid range
for self writes).
* migrated from system_config.h to direct include of fileio_config.h
#pragma message "Double click this message and read inline code comments. For production designs, recommend adding application specific robustness features here."
682
-
#else
683
-
#warning "Double click this message and read inline code comments. For production designs, recommend adding application specific robustness features here."
#error "User must define the DRV_FILEIO_INTERNAL_FLASH_CONFIG_UNLOCK_VERIFICATION_FUNCTION macro in the fileio_config.h file. Click this message for more details in comments."
682
+
/* The DRV_FILEIO_INTERNAL_FLASH_CONFIG_UNLOCK_VERIFICATION_FUNCTION macro
683
+
* is used to verify that the system is in a condition where a self write
684
+
* is valid. This could include checks for system voltage levels, clocking
685
+
* vs voltage, address checking for write locations, etc. The prototype of
686
+
* the function that this micro should point to is the following:
687
+
* bool functionName(void);
688
+
* The functions should return true if the self write is allowed and false
0 commit comments