1 /*
2  * Copyright 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef P2G4_V1_V2_REMAP_H
7 #define P2G4_V1_V2_REMAP_H
8 
9 #include "bs_types.h"
10 #include "bs_cmd_line_typical.h"
11 #include "bs_pc_2G4_types.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 void map_rxv2_resp_to_rxv1(p2G4_rx_done_t *rx_done_v1, p2G4_rxv2_done_t *rx_done_v2);
18 void map_rxv1_to_rxv2(p2G4_rxv2_t *rx_v2_s, p2G4_rx_t *rx_v1_s);
19 void map_txv1_to_txv2(p2G4_txv2_t *tx_v2_s, p2G4_tx_t *tx_v1_s);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif
26