mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-04 22:17:01 +08:00
106 lines
2.7 KiB
C
106 lines
2.7 KiB
C
/*
|
|
* Copyright (C) 2005 Pascal Brisset, Antoine Drouin
|
|
*
|
|
* This file is part of paparazzi.
|
|
*
|
|
* paparazzi is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* paparazzi 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with paparazzi; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
/** \file datalink.h
|
|
* \brief Handling of messages coming from ground and other A/Cs
|
|
*
|
|
*/
|
|
|
|
#ifndef DATALINK_H
|
|
#define DATALINK_H
|
|
|
|
#ifdef DATALINK_C
|
|
#define EXTERN
|
|
#else
|
|
#define EXTERN extern
|
|
#endif
|
|
|
|
#ifdef __IEEE_BIG_ENDIAN /* From machine/ieeefp.h */
|
|
#define Swap32IfBigEndian(_u) { _u = (_u << 32) | (_u >> 32); }
|
|
#else
|
|
#define Swap32IfBigEndian(_) {}
|
|
#endif
|
|
|
|
#include "std.h"
|
|
#include "dl_protocol.h"
|
|
|
|
/** Datalink kinds */
|
|
#define PPRZ 1
|
|
#define XBEE 2
|
|
#define UDP 3
|
|
|
|
EXTERN bool_t dl_msg_available;
|
|
/** Flag provided to control calls to ::dl_parse_msg. NOT used in this module*/
|
|
|
|
EXTERN uint16_t datalink_time;
|
|
|
|
#define MSG_SIZE 128
|
|
EXTERN uint8_t dl_buffer[MSG_SIZE] __attribute__ ((aligned));
|
|
|
|
EXTERN void dl_parse_msg(void);
|
|
/** Should be called when chars are available in dl_buffer */
|
|
|
|
/** Check for new message and parse */
|
|
#define DlCheckAndParse() { \
|
|
if (dl_msg_available) { \
|
|
dl_parse_msg(); \
|
|
dl_msg_available = FALSE; \
|
|
} \
|
|
}
|
|
|
|
#if defined DATALINK && DATALINK == PPRZ
|
|
|
|
#define DatalinkEvent() { \
|
|
PprzCheckAndParse(PPRZ_UART, pprz_tp); \
|
|
DlCheckAndParse(); \
|
|
}
|
|
|
|
#elif defined DATALINK && DATALINK == XBEE
|
|
|
|
#define DatalinkEvent() { \
|
|
XBeeCheckAndParse(XBEE_UART, xbee_tp); \
|
|
DlCheckAndParse(); \
|
|
}
|
|
|
|
#elif defined DATALINK && DATALINK == W5100
|
|
|
|
#define DatalinkEvent() { \
|
|
W5100CheckAndParse(W5100, w5100_tp); \
|
|
DlCheckAndParse(); \
|
|
}
|
|
|
|
#elif defined DATALINK && DATALINK == UDP
|
|
|
|
#define DatalinkEvent() { \
|
|
UdpCheckAndParse(); \
|
|
DlCheckAndParse(); \
|
|
}
|
|
|
|
|
|
#else
|
|
|
|
// Unknown DATALINK
|
|
#define DatalinkEvent() {}
|
|
|
|
#endif /* DATALINK == */
|
|
|
|
#endif /* DATALINK_H */
|