comparison ater/out_frame.h @ 21:2ee910aa03c3

ater: implement TRAU frame filling
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 24 Jun 2024 09:20:54 +0000
parents
children
comparison
equal deleted inserted replaced
20:5405c1573027 21:2ee910aa03c3
1 /*
2 * This header file defines the interface to the function that
3 * fills struct osmo_trau_frame based on a 34-byte binary record
4 * we read from our ad hoc TRAU testing file format.
5 */
6
7 #pragma once
8
9 #include <stdint.h>
10 #include <stdbool.h>
11
12 #include <osmocom/trau/trau_frame.h>
13
14 void trau_frame_from_record(const uint8_t *rec, bool is_efr,
15 struct osmo_trau_frame *fr);