Contiki-NG
Loading...
Searching...
No Matches
nrf_802154_platform_misc.c
1/*
2 * Copyright (c) 2026, RISE Research Institutes of Sweden AB
3 * All rights reserved.
4 *
5 * Author: Joakim Eriksson <joakim.eriksson@ri.se>
6 *
7 * SPDX-License-Identifier: BSD-3-Clause
8 *
9 * Miscellaneous platform callouts for nrf_802154 on nRF54L15.
10 */
11
12#include "nrf_802154.h"
13
14/*
15 * Called by the driver at the beginning of each new timeslot.
16 * Can be used for additional RADIO register modifications.
17 */
18/*---------------------------------------------------------------------------*/
19void
20nrf_802154_custom_part_of_radio_init(void)
21{
22 /* No custom initialization needed. */
23}
24/*
25 * Called when a TX ACK is started. We don't need to do anything here.
26 */
27/*---------------------------------------------------------------------------*/
28void
29nrf_802154_tx_ack_started(const uint8_t *p_data)
30{
31 (void)p_data;
32}
33/*---------------------------------------------------------------------------*/