Commit d04c3c18 authored by Michal Smola's avatar Michal Smola Committed by Anas Nashif
Browse files

tests: drivers: counter_basic_api: Support mcux rtc counter



Allow counter_mcux_rtc in reliable_cancel_capable test.

Signed-off-by: default avatarMichal Smola <michal.smola@nxp.com>
parent 527a2258
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1086,6 +1086,11 @@ static bool reliable_cancel_capable(const struct device *dev)
	if (single_channel_alarm_capable(dev)) {
		return true;
	}
#endif
#ifdef CONFIG_COUNTER_MCUX_RTC
	if (single_channel_alarm_capable(dev)) {
		return true;
	}
#endif
	return false;
}