FreeCalypso > hg > ice1-trau-tester
view ater/read_file.h @ 52:626180a15857 default tip
ater play-d144: emit E-data frames manually,
osmo_trau_frame_encode() is currently broken for this frame type
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 25 Sep 2024 06:40:43 +0000 |
parents | db39e8855f3d |
children |
line wrap: on
line source
/* * This header file defines the interface to the function that reads * binary files in our ad hoc format for TRAU testing. */ #pragma once #include <stdint.h> #include <stdbool.h> int read_binary_file(const char *filename, bool is_efr, uint8_t **bufret, unsigned *size_ret); int read_binary_file_d144(const char *filename, uint8_t **bufret, unsigned *size_ret);