1 /*
2  * Copyright (c) 2020 Demant
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _ISOAL_TEST_DEBUG_H_
8 #define _ISOAL_TEST_DEBUG_H_
9 
10 /*#define DEBUG_TEST			(1)*/
11 /*#define DEBUG_TRACE			(1)*/
12 
13 extern void isoal_test_debug_print_rx_pdu(struct isoal_pdu_rx *pdu_meta);
14 extern void isoal_test_debug_print_rx_sdu(const struct isoal_sink             *sink_ctx,
15 					  const struct isoal_emitted_sdu_frag *sdu_frag,
16 					  const struct isoal_emitted_sdu      *sdu);
17 extern void isoal_test_debug_print_tx_pdu(struct node_tx_iso *node_tx);
18 extern void isoal_test_debug_print_tx_sdu(struct isoal_sdu_tx *tx_sdu);
19 
20 extern void isoal_test_debug_trace_func_call(const uint8_t *func, const uint8_t *status);
21 
22 #endif /* _ISOAL_TEST_DEBUG_H_ */
23