Skip to content

Commit

Permalink
feat(PeriphDrivers): Allow info block unlock function be overwritten …
Browse files Browse the repository at this point in the history
…for MAX32657 (#1213)

Signed-off-by: Sadik Ozer <[email protected]>
  • Loading branch information
ozersa authored Oct 8, 2024
1 parent 979f088 commit 469f7f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Libraries/PeriphDrivers/Source/FLC/flc_me30.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ int MXC_FLC_MassErase(void)
}

//******************************************************************************
int MXC_FLC_UnlockInfoBlock(uint32_t address)
__weak int MXC_FLC_UnlockInfoBlock(uint32_t address)
{
return MXC_FLC_RevA_UnlockInfoBlock((mxc_flc_reva_regs_t *)MXC_FLC, address);
return E_NOT_SUPPORTED;
}

//******************************************************************************
Expand Down

0 comments on commit 469f7f7

Please sign in to comment.