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
40extern bool dl_msg_available;
41
44
47
48#define MSG_SIZE 256
50
52extern void dl_parse_msg(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
53
54#if USE_NPS
55extern bool datalink_enabled;
56#endif
57
59// TODO: replace with a memcpy for efficiency
60#define DatalinkFillDlBuffer(_buf, _len) { \
61 uint16_t _i = 0; \
62 for (_i = 0; _i < _len; _i++) { \
63 dl_buffer[_i] = _buf[_i]; \
64 } \
65 dl_msg_available = true; \
66}
67
69extern void datalink_init(void);
70
72extern void datalink_periodic(void);
73
74extern void datalink_parse_PING(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
75
77static inline void DlCheckAndParse(struct link_device *dev, struct transport_tx *trans, uint8_t *buf, bool *msg_available, bool update_dl)
78{
79 // make it possible to disable datalink in NPS sim
80#if USE_NPS
81 if (!datalink_enabled) {
82 return;
83 }
84#endif
85
86 if (*msg_available) {
87 if (update_dl) {
88 datalink_time = 0;
90 }
91 dl_parse_msg(dev, trans, buf);
92 *msg_available = false;
93 }
94}
95
96#endif /* DATALINK_H */
static struct uart_periph * dev
uint16_t foo
Definition main_demo5.c:58
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.