mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 16:55:20 +03:00
185 lines
5.5 KiB
C
185 lines
5.5 KiB
C
/*
|
|
* Copyright (C) OpenTX
|
|
*
|
|
* Based on code named
|
|
* th9x - http://code.google.com/p/th9x
|
|
* er9x - http://code.google.com/p/er9x
|
|
* gruvin9x - http://code.google.com/p/gruvin9x
|
|
*
|
|
* License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* 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 General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _TELEMETRY_H_
|
|
#define _TELEMETRY_H_
|
|
|
|
#if defined(TELEMETRY_FRSKY)
|
|
// FrSky Telemetry
|
|
#include "frsky.h"
|
|
#endif
|
|
|
|
#include "crossfire.h"
|
|
#if defined(MULTIMODULE)
|
|
#include "spektrum.h"
|
|
#include "flysky_ibus.h"
|
|
#include "multi.h"
|
|
#endif
|
|
|
|
extern uint8_t telemetryStreaming; // >0 (true) == data is streaming in. 0 = no data detected for some time
|
|
extern uint8_t R9ModuleStreaming; // >0 (true) == R9 module is connected and sending data 0 = no data detected for some time
|
|
|
|
#if defined(WS_HOW_HIGH)
|
|
extern uint8_t wshhStreaming;
|
|
#endif
|
|
|
|
enum TelemetryStates {
|
|
TELEMETRY_INIT,
|
|
TELEMETRY_OK,
|
|
TELEMETRY_KO
|
|
};
|
|
extern uint8_t telemetryState;
|
|
|
|
#define TELEMETRY_TIMEOUT10ms 100 // 1 second
|
|
|
|
#define TELEMETRY_SERIAL_DEFAULT 0
|
|
#define TELEMETRY_SERIAL_8E2 1
|
|
#define TELEMETRY_SERIAL_WITHOUT_DMA 2
|
|
|
|
#if defined(CROSSFIRE) || defined(MULTIMODULE)
|
|
#define TELEMETRY_RX_PACKET_SIZE 128
|
|
// multi module Spektrum telemetry is 18 bytes, FlySky is 37 bytes
|
|
#else
|
|
#define TELEMETRY_RX_PACKET_SIZE 19 // 9 bytes (full packet), worst case 18 bytes with byte-stuffing (+1)
|
|
#endif
|
|
|
|
extern uint8_t telemetryRxBuffer[TELEMETRY_RX_PACKET_SIZE];
|
|
extern uint8_t telemetryRxBufferCount;
|
|
|
|
#define TELEMETRY_AVERAGE_COUNT 3
|
|
|
|
enum {
|
|
TELEM_CELL_INDEX_LOWEST,
|
|
TELEM_CELL_INDEX_1,
|
|
TELEM_CELL_INDEX_2,
|
|
TELEM_CELL_INDEX_3,
|
|
TELEM_CELL_INDEX_4,
|
|
TELEM_CELL_INDEX_5,
|
|
TELEM_CELL_INDEX_6,
|
|
TELEM_CELL_INDEX_HIGHEST,
|
|
TELEM_CELL_INDEX_DELTA,
|
|
};
|
|
|
|
PACK(struct CellValue
|
|
{
|
|
uint16_t value:15;
|
|
uint16_t state:1;
|
|
|
|
void set(uint16_t value)
|
|
{
|
|
if (value > 50) {
|
|
this->value = value;
|
|
this->state = 1;
|
|
}
|
|
}
|
|
});
|
|
|
|
int setTelemetryValue(TelemetryProtocol protocol, uint16_t id, uint8_t subId, uint8_t instance, int32_t value, uint32_t unit, uint32_t prec);
|
|
void delTelemetryIndex(uint8_t index);
|
|
int availableTelemetryIndex();
|
|
int lastUsedTelemetryIndex();
|
|
|
|
int32_t convertTelemetryValue(int32_t value, uint8_t unit, uint8_t prec, uint8_t destUnit, uint8_t destPrec);
|
|
|
|
void frskySportSetDefault(int index, uint16_t id, uint8_t subId, uint8_t instance);
|
|
void frskyDSetDefault(int index, uint16_t id);
|
|
|
|
#define IS_DISTANCE_UNIT(unit) ((unit) == UNIT_METERS || (unit) == UNIT_FEET)
|
|
#define IS_SPEED_UNIT(unit) ((unit) >= UNIT_KTS && (unit) <= UNIT_MPH)
|
|
|
|
extern uint8_t telemetryProtocol;
|
|
|
|
#if defined (MULTIMODULE)
|
|
#define IS_D16_MULTI() ((g_model.moduleData[EXTERNAL_MODULE].getMultiProtocol(false) == MM_RF_PROTO_FRSKY) && (g_model.moduleData[EXTERNAL_MODULE].subType == MM_RF_FRSKY_SUBTYPE_D16 || g_model.moduleData[EXTERNAL_MODULE].subType == MM_RF_FRSKY_SUBTYPE_D16_8CH))
|
|
#define IS_FRSKY_SPORT_PROTOCOL() (telemetryProtocol == PROTOCOL_TELEMETRY_FRSKY_SPORT || (telemetryProtocol == PROTOCOL_TELEMETRY_MULTIMODULE && IS_D16_MULTI()))
|
|
#else
|
|
#define IS_FRSKY_SPORT_PROTOCOL() (telemetryProtocol == PROTOCOL_TELEMETRY_FRSKY_SPORT)
|
|
#endif
|
|
#define IS_SPEKTRUM_PROTOCOL() (telemetryProtocol == PROTOCOL_TELEMETRY_SPEKTRUM)
|
|
|
|
inline uint8_t modelTelemetryProtocol()
|
|
{
|
|
#if defined(CROSSFIRE)
|
|
if (g_model.moduleData[EXTERNAL_MODULE].type == MODULE_TYPE_CROSSFIRE) {
|
|
return PROTOCOL_TELEMETRY_CROSSFIRE;
|
|
}
|
|
#endif
|
|
|
|
if (!IS_INTERNAL_MODULE_ENABLED() && g_model.moduleData[EXTERNAL_MODULE].type == MODULE_TYPE_PPM) {
|
|
return g_model.telemetryProtocol;
|
|
}
|
|
|
|
if (!IS_INTERNAL_MODULE_ENABLED() && isModulePXX2(EXTERNAL_MODULE)) {
|
|
return PROTOCOL_TELEMETRY_PXX2;
|
|
}
|
|
|
|
if (!IS_INTERNAL_MODULE_ENABLED() && isModulePXX(EXTERNAL_MODULE)) {
|
|
return PROTOCOL_TELEMETRY_FRSKY_SPORT;
|
|
}
|
|
#if defined(MULTIMODULE)
|
|
if (!IS_INTERNAL_MODULE_ENABLED() && g_model.moduleData[EXTERNAL_MODULE].type == MODULE_TYPE_MULTIMODULE) {
|
|
return PROTOCOL_TELEMETRY_MULTIMODULE;
|
|
}
|
|
#endif
|
|
|
|
// default choice
|
|
return PROTOCOL_TELEMETRY_FRSKY_SPORT;
|
|
}
|
|
|
|
#include "telemetry_sensors.h"
|
|
|
|
#if defined(LOG_TELEMETRY) && !defined(SIMU)
|
|
void logTelemetryWriteStart();
|
|
void logTelemetryWriteByte(uint8_t data);
|
|
#define LOG_TELEMETRY_WRITE_START() logTelemetryWriteStart()
|
|
#define LOG_TELEMETRY_WRITE_BYTE(data) logTelemetryWriteByte(data)
|
|
#else
|
|
#define LOG_TELEMETRY_WRITE_START()
|
|
#define LOG_TELEMETRY_WRITE_BYTE(data)
|
|
#endif
|
|
|
|
#define TELEMETRY_OUTPUT_FIFO_SIZE 20
|
|
extern uint8_t outputTelemetryBuffer[TELEMETRY_OUTPUT_FIFO_SIZE] __DMA;
|
|
extern uint8_t outputTelemetryBufferSize;
|
|
extern uint8_t outputTelemetryBufferTrigger;
|
|
|
|
inline void telemetryOutputPushByte(uint8_t byte)
|
|
{
|
|
outputTelemetryBuffer[outputTelemetryBufferSize++] = byte;
|
|
}
|
|
|
|
inline void telemetryOutputSetTrigger(uint8_t byte)
|
|
{
|
|
outputTelemetryBufferTrigger = byte;
|
|
}
|
|
|
|
#if defined(LUA)
|
|
#define LUA_TELEMETRY_INPUT_FIFO_SIZE 256
|
|
extern Fifo<uint8_t, LUA_TELEMETRY_INPUT_FIFO_SIZE> * luaInputTelemetryFifo;
|
|
#endif
|
|
|
|
#if defined(STM32)
|
|
#define IS_TELEMETRY_INTERNAL_MODULE() (g_model.moduleData[INTERNAL_MODULE].type == MODULE_TYPE_XJT)
|
|
#else
|
|
#define IS_TELEMETRY_INTERNAL_MODULE() (false)
|
|
#endif
|
|
|
|
#endif // _TELEMETRY_H_
|
|
|