Merge pull request #2008 from xoviat/wpan

wpan: re-enable HIL tests
This commit is contained in:
xoviat 2023-10-03 21:02:48 +00:00 committed by GitHub
commit 09dfcd6b66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

2
ci.sh
View File

@ -201,8 +201,6 @@ cargo batch \
$BUILD_EXTRA
rm out/tests/stm32wb55rg/wpan_mac
rm out/tests/stm32wb55rg/wpan_ble
if [[ -z "${TELEPROBE_TOKEN-}" ]]; then
echo No teleprobe token found, skipping running HIL tests

View File

@ -88,6 +88,8 @@ impl BackupDomain {
))]
#[allow(dead_code, unused_variables)]
pub fn configure_ls(clock_source: RtcClockSource, lsi: bool, lse: Option<LseDrive>) {
use atomic_polyfill::{compiler_fence, Ordering};
match clock_source {
RtcClockSource::LSI => assert!(lsi),
RtcClockSource::LSE => assert!(&lse.is_some()),
@ -173,5 +175,7 @@ impl BackupDomain {
}
trace!("BDCR configured: {:08x}", Self::read().0);
compiler_fence(Ordering::SeqCst);
}
}