Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions scripts/quarantine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,13 @@
- [email protected]/nrf52840
- [email protected]/nrf9160
comment: "https://nordicsemi.atlassian.net/browse/NRFX-8562"

- scenarios:
- applications.matter_weather_station.nrf7002eb
- sample.nrf7002_eb.thingy53.*
- sample.sensor.bme68x.*
- sample.bluetooth.peripheral_.*
- sample.bluetooth.mesh.*
platforms:
- thingy53/nrf5340/cpuapp
comment: "https://nordicsemi.atlassian.net/browse/NRFX-8605"
4 changes: 3 additions & 1 deletion tests/bluetooth/iso/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ static int hfclock_config_and_start(void)
return ret;
}

nrf_clock_hfclk_t clk_src;

nrfx_clock_hfclk_start();
while (!nrfx_clock_hfclk_is_running()) {
while (!nrfx_clock_hfclk_running_check(&clk_src)) {
}

return 0;
Expand Down
4 changes: 2 additions & 2 deletions west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: 019e3ded1bea7b3c5ce83ea2d3cc6175b1355c95
revision: 7dee15869ec61e9ac5fa40bb4e93d7867359a115
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand Down Expand Up @@ -280,7 +280,7 @@ manifest:
path: nrfx
groups:
- nrfx
revision: 8c19164ec422064e8e0d08f1cf69ea79d3a0b18a
revision: 59452e2969d289d9a263510a4896fd0faa936ce5

# West-related configuration for the nrf repository.
self:
Expand Down
Loading