mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
76 lines
3.4 KiB
C
76 lines
3.4 KiB
C
/**
|
|
******************************************************************************
|
|
* @addtogroup OpenPilotSystem OpenPilot System
|
|
* @{
|
|
* @addtogroup OpenPilotLibraries OpenPilot System Libraries
|
|
* @{
|
|
* @file uavtalk.h
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
* @brief Include file of the UAVTalk library
|
|
* @see The GNU Public License (GPL) Version 3
|
|
*
|
|
*****************************************************************************/
|
|
/*
|
|
* This program 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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 General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef UAVTALK_H
|
|
#define UAVTALK_H
|
|
|
|
// Public types
|
|
typedef int32_t (*UAVTalkOutputStream)(uint8_t *data, int32_t length);
|
|
|
|
typedef struct {
|
|
uint32_t txBytes;
|
|
uint32_t txObjectBytes;
|
|
uint32_t txObjects;
|
|
uint32_t txErrors;
|
|
|
|
uint32_t rxBytes;
|
|
uint32_t rxObjectBytes;
|
|
uint32_t rxObjects;
|
|
uint32_t rxErrors;
|
|
uint32_t rxSyncErrors;
|
|
uint32_t rxCrcErrors;
|
|
} UAVTalkStats;
|
|
|
|
typedef void *UAVTalkConnection;
|
|
|
|
typedef enum { UAVTALK_STATE_ERROR = 0, UAVTALK_STATE_SYNC, UAVTALK_STATE_TYPE, UAVTALK_STATE_SIZE, UAVTALK_STATE_OBJID, UAVTALK_STATE_INSTID, UAVTALK_STATE_TIMESTAMP, UAVTALK_STATE_DATA, UAVTALK_STATE_CS, UAVTALK_STATE_COMPLETE } UAVTalkRxState;
|
|
|
|
// Public functions
|
|
UAVTalkConnection UAVTalkInitialize(UAVTalkOutputStream outputStream);
|
|
int32_t UAVTalkSetOutputStream(UAVTalkConnection connection, UAVTalkOutputStream outputStream);
|
|
UAVTalkOutputStream UAVTalkGetOutputStream(UAVTalkConnection connection);
|
|
int32_t UAVTalkSendObject(UAVTalkConnection connection, UAVObjHandle obj, uint16_t instId, uint8_t acked, int32_t timeoutMs);
|
|
int32_t UAVTalkSendObjectTimestamped(UAVTalkConnection connectionHandle, UAVObjHandle obj, uint16_t instId, uint8_t acked, int32_t timeoutMs);
|
|
int32_t UAVTalkSendObjectRequest(UAVTalkConnection connection, UAVObjHandle obj, uint16_t instId, int32_t timeoutMs);
|
|
UAVTalkRxState UAVTalkProcessInputStream(UAVTalkConnection connectionHandle, uint8_t *rxbuffer, uint8_t length);
|
|
UAVTalkRxState UAVTalkProcessInputStreamQuiet(UAVTalkConnection connectionHandle, uint8_t *rxbuffer, uint8_t length, uint8_t *position);
|
|
int32_t UAVTalkRelayPacket(UAVTalkConnection inConnectionHandle, UAVTalkConnection outConnectionHandle);
|
|
int32_t UAVTalkReceiveObject(UAVTalkConnection connectionHandle);
|
|
int32_t UAVTalkReceiveObjectNoCreate(UAVTalkConnection connectionHandle);
|
|
void UAVTalkGetStats(UAVTalkConnection connection, UAVTalkStats *stats, bool reset);
|
|
void UAVTalkAddStats(UAVTalkConnection connection, UAVTalkStats *stats, bool reset);
|
|
void UAVTalkResetStats(UAVTalkConnection connection);
|
|
void UAVTalkGetLastTimestamp(UAVTalkConnection connection, uint16_t *timestamp);
|
|
uint32_t UAVTalkGetPacketObjId(UAVTalkConnection connection);
|
|
|
|
#endif // UAVTALK_H
|
|
/**
|
|
* @}
|
|
* @}
|
|
*/
|