Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Loading...
Searching...
No Matches
datalink.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2005 Pascal Brisset, Antoine Drouin
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 *
21 */
27#ifndef DATALINK_H
28#define DATALINK_H
29
30#include "std.h"
31#include "pprzlink/dl_protocol.h"
32
34#define PPRZ 1
35#define XBEE 2
36#define SUPERBITRF 3
37#define W5100 4
38#define BLUEGIGA 5
39
41extern bool dl_msg_available;
42
45
48
49#define MSG_SIZE 256
51
53extern void dl_parse_msg(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
54
55#if USE_NPS
56extern bool datalink_enabled;
57#endif
58
60// TODO: replace with a memcpy for efficiency
61#define DatalinkFillDlBuffer(_buf, _len) { \
62 uint16_t _i = 0; \
63 for (_i = 0; _i < _len; _i++) { \
64 dl_buffer[_i] = _buf[_i]; \
65 } \
66 dl_msg_available = true; \
67}
68
70extern void datalink_init(void);
71
73extern void datalink_periodic(void);
74
75extern void datalink_parse_PING(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
76
78static inline void DlCheckAndParse(struct link_device *dev, struct transport_tx *trans, uint8_t *buf, bool *msg_available, bool update_dl)
79{
80 // make it possible to disable datalink in NPS sim
81#if USE_NPS
82 if (!datalink_enabled) {
83 return;
84 }
85#endif
86
87 if (*msg_available) {
88 if (update_dl) {
89 datalink_time = 0;
91 }
92 dl_parse_msg(dev, trans, buf);
93 *msg_available = false;
94 }
95}
96
97#endif /* DATALINK_H */
uint16_t foo
Definition main_demo5.c:58
static const struct usb_device_descriptor dev
Definition usb_ser_hw.c:74
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.