2020-01-02 23:56:48 -04:00
|
|
|
/*
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
|
|
|
|
#ifndef HAL_HOTT_TELEM_ENABLED
|
2022-11-02 06:14:49 -03:00
|
|
|
#define HAL_HOTT_TELEM_ENABLED 1
|
2020-01-02 23:56:48 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAL_HOTT_TELEM_ENABLED
|
|
|
|
class AP_Hott_Telem {
|
|
|
|
public:
|
|
|
|
AP_Hott_Telem();
|
|
|
|
|
|
|
|
/* Do not allow copies */
|
2022-09-30 06:50:43 -03:00
|
|
|
CLASS_NO_COPY(AP_Hott_Telem);
|
2020-01-02 23:56:48 -04:00
|
|
|
|
|
|
|
static AP_Hott_Telem *get_singleton(void) {
|
|
|
|
return singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialise
|
|
|
|
void init(void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
static AP_Hott_Telem *singleton;
|
|
|
|
|
|
|
|
AP_HAL::UARTDriver *uart;
|
|
|
|
|
|
|
|
void loop(void);
|
|
|
|
void send_EAM();
|
|
|
|
void send_GPS();
|
|
|
|
void send_Vario();
|
|
|
|
void send_packet(const uint8_t *b, uint8_t len);
|
|
|
|
void GPS_to_DDM(float decimal, uint8_t &sign, uint16_t &dm, uint16_t &sec) const;
|
|
|
|
|
|
|
|
float min_alt, max_alt;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace AP {
|
|
|
|
AP_Hott_Telem *hott_telem();
|
|
|
|
};
|
|
|
|
#endif // HAL_HOTT_TELEM_ENABLED
|