Skip to content

Commit 4c42952

Browse files
authored
Merge pull request #13749 from jrobeson/missing-args-in-pal-rtc-functions
Add missing args to weakly defined PalRtc functions
2 parents 2cb64f5 + e27571f commit 4c42952

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

connectivity/FEATURE_BLE/source/cordio/stack_adaptation/pal_mbed_os_adaptation.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ MBED_WEAK void PalRtcInit()
6969
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcInit");
7070
}
7171

72-
MBED_WEAK void PalRtcEnableCompareIrq()
72+
MBED_WEAK void PalRtcEnableCompareIrq(uint8_t channelId)
7373
{
7474
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcEnableCompareIrq");
7575
}
7676

77-
MBED_WEAK void PalRtcDisableCompareIrq()
77+
MBED_WEAK void PalRtcDisableCompareIrq(uint8_t channelId)
7878
{
7979
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcDisableCompareIrq");
8080
}
@@ -85,7 +85,7 @@ MBED_WEAK uint32_t PalRtcCounterGet()
8585
return 0;
8686
}
8787

88-
MBED_WEAK void PalRtcCompareSet(uint32_t value)
88+
MBED_WEAK void PalRtcCompareSet(uint8_t channelId, uint32_t value)
8989
{
9090
MBED_ERROR(function_not_implemented, "Provide implementation of PalRtcCompareSet");
9191
}

0 commit comments

Comments
 (0)