FreeCalypso > hg > ice1-trau-tester
view ater/submux.h @ 16:4ffe22f5b4b5
ater: initial osmo_i460 framework
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 24 Jun 2024 07:19:38 +0000 |
parents | |
children | 1e375472d5a5 |
line wrap: on
line source
/* * The structures and functions defined in this header file deal with * interfacing to the Submultiplexer part of Nokia's Transcoder and * Submultiplexer. */ #pragma once #include <stdint.h> #include <stdbool.h> #include <osmocom/core/bits.h> #include <osmocom/isdn/i460_mux.h> #include <osmocom/trau/trau_frame.h> #define ATER_SUBSLOTS 4 struct ater_subslot { struct osmo_i460_subchan *schan; int nr; bool is_active; bool is_efr; struct osmo_trau_frame ul_frame; }; extern struct ater_subslot subslots[ATER_SUBSLOTS]; void i460_rx_func(struct osmo_i460_subchan *schan, void *user_data, const ubit_t *bits, unsigned int num_bits);