comparison ater8/subslot_rx.c @ 42:ff94d7fc5891

new program itt-ater-8
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 30 Aug 2024 19:02:42 +0000
parents ater/subslot_rx.c@4ffe22f5b4b5
children
comparison
equal deleted inserted replaced
41:50a72d4ff498 42:ff94d7fc5891
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 }