-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacars.h
42 lines (39 loc) · 1.13 KB
/
acars.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Copyright (c) 2014 Thierry Leconte (f4dwv)
*
*
* This code is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef __ACARS_H
#define __ACARS_H
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <pthread.h>
#include <math.h>
typedef struct {
unsigned char mode;
unsigned char addr[8];
unsigned char ack;
unsigned char label[3];
unsigned char bid;
unsigned char no[5];
unsigned char fid[7];
unsigned char bs,be;
unsigned char txt[240];
int err,lvl;
} acarsmsg_t;
#endif /* __ACARS_H */