FreeCalypso > hg > ice1-trau-tester
view abis/submux.h @ 33:351bd801cdce
abis: should be complete now
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 13 Aug 2024 22:53:42 +0000 |
parents | 94f11dc0d474 |
children |
line wrap: on
line source
/* * The structures and functions defined in this header file deal with * submultiplexing on the Abis interface. */ #pragma once #include <stdint.h> #include <stdbool.h> #include <osmocom/core/bits.h> #include <osmocom/core/fsm.h> #include <osmocom/isdn/i460_mux.h> #define ABIS_SUBSLOTS 4 struct abis_subslot { struct osmo_i460_subchan *schan; struct osmo_fsm_inst *sync; int nr; bool got_sync; uint8_t frame_type; }; extern struct abis_subslot subslots[ABIS_SUBSLOTS]; void i460_rx_func(struct osmo_i460_subchan *schan, void *user_data, const ubit_t *bits, unsigned int num_bits); void sync_rx_func(void *user_data, const ubit_t *bits, unsigned int num_bits);