FreeCalypso > hg > ice1-trau-tester
comparison ater/subslot_rx.c @ 16:4ffe22f5b4b5
ater: initial osmo_i460 framework
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 24 Jun 2024 07:19:38 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
15:98ae717734d6 | 16:4ffe22f5b4b5 |
---|---|
1 /* | |
2 * Here we are going to implement Ater 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 } |