Skip to content

Commit 024b92d

Browse files
committed
Add __weak attribute to SDMMC2_IRQHandler()
This is needed because we are using the same libootutil library for all the targets and for NICLA the function is already defined in libmbed.a
1 parent d65679a commit 024b92d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/sdcard/BSP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ __weak void BSP_SD_ReadCpltCallback(void)
454454

455455
}
456456

457-
void SDMMC2_IRQHandler(void)
457+
__weak void SDMMC2_IRQHandler(void)
458458
{
459459
BSP_SD_IRQHandler();
460460
}

0 commit comments

Comments
 (0)