Skip to content

Commit b3bf84f

Browse files
asmellbyjhedberg
authored andcommitted
manifest: Update zephyr dependency
Update zephyr repo to latest revision from development branch. Remove duplicate RAIL ISR registration from simple_txrx sample, this is now done by the SoC. Signed-off-by: Aksel Skauge Mellbye <[email protected]>
1 parent 121d6ed commit b3bf84f

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

samples/simple_txrx/src/main.c

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -219,22 +219,6 @@ static RAIL_Handle_t rail_init(void)
219219
return rail_handle;
220220
}
221221

222-
static void rail_isr_installer(void)
223-
{
224-
#ifdef CONFIG_SOC_SERIES_EFR32MG24
225-
IRQ_CONNECT(SYNTH_IRQn, 0, SYNTH_IRQHandler, NULL, 0);
226-
#else
227-
IRQ_CONNECT(RDMAILBOX_IRQn, 0, RDMAILBOX_IRQHandler, NULL, 0);
228-
#endif
229-
IRQ_CONNECT(RAC_SEQ_IRQn, 0, RAC_SEQ_IRQHandler, NULL, 0);
230-
IRQ_CONNECT(RAC_RSM_IRQn, 0, RAC_RSM_IRQHandler, NULL, 0);
231-
IRQ_CONNECT(PROTIMER_IRQn, 0, PROTIMER_IRQHandler, NULL, 0);
232-
IRQ_CONNECT(MODEM_IRQn, 0, MODEM_IRQHandler, NULL, 0);
233-
IRQ_CONNECT(FRC_IRQn, 0, FRC_IRQHandler, NULL, 0);
234-
IRQ_CONNECT(BUFC_IRQn, 0, BUFC_IRQHandler, NULL, 0);
235-
IRQ_CONNECT(AGC_IRQn, 0, AGC_IRQHandler, NULL, 0);
236-
}
237-
238222
int main(void)
239223
{
240224
static const uint8_t default_payload[] = {
@@ -255,7 +239,6 @@ int main(void)
255239
gpio_init_callback(&sw0_cb, btn_pressed, BIT(sw0.pin));
256240
gpio_add_callback(sw0.port, &sw0_cb);
257241

258-
rail_isr_installer();
259242
sl_rail_util_pa_init();
260243
app_ctx.rail_handle = rail_init();
261244
app_ctx.channel = 0;

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ manifest:
1515
path: modules/crypto/mbedtls
1616
- name: zephyr
1717
remote: silabs
18-
revision: 9b7d73cf676ea1a420a05687d4df8e37da0a958a
18+
revision: bcc4689cd01620c1a5408986085343e656ec5a71
1919
import:
2020
# By using name-allowlist we can clone only the modules that are
2121
# strictly needed by the application.

0 commit comments

Comments
 (0)