FreeCalypso > hg > ice1-trau-tester
comparison abis/subslot_rx.c @ 30:5dd30224b70a
abis: starting new program
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 13 Aug 2024 21:38:55 +0000 |
parents | ater/subslot_rx.c@4ffe22f5b4b5 |
children | 94f11dc0d474 |
comparison
equal
deleted
inserted
replaced
29:1dda11905e85 | 30:5dd30224b70a |
---|---|
1 /* | |
2 * Here we are going to implement Abis subslot Rx. | |
3 */ | |
4 | |
5 #include <stdint.h> | |
6 #include <stdbool.h> | |
7 #include <stdio.h> | |
8 #include <stdlib.h> | |
9 #include <string.h> | |
10 | |
11 #include <osmocom/core/select.h> | |
12 #include <osmocom/isdn/i460_mux.h> | |
13 | |
14 #include "globals.h" | |
15 #include "submux.h" | |
16 | |
17 void i460_rx_func(struct osmo_i460_subchan *schan, void *user_data, | |
18 const ubit_t *bits, unsigned int num_bits) | |
19 { | |
20 /* to be filled */ | |
21 } |