mirror of https://github.com/ARMmbed/mbed-os.git
Add missing EFM32 HAL flash init/deinit function calls
parent
52c7fe5167
commit
c0b4f0c8dd
|
@ -35,6 +35,7 @@
|
|||
int32_t flash_init(flash_t *obj)
|
||||
{
|
||||
(void)obj;
|
||||
MSC_Init();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -46,6 +47,7 @@ int32_t flash_init(flash_t *obj)
|
|||
int32_t flash_free(flash_t *obj)
|
||||
{
|
||||
(void)obj;
|
||||
MSC_Deinit();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue