Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9994557

Browse files
committedApr 7, 2022
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 de1aa44 commit 9994557

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)
Please sign in to comment.