rdz_ttgo_sonde/RX_FSK/src/conn-chasemapper.h

18 wiersze
287 B
C++

#ifndef _CHASEMAPPER_H
#define _CHASEMAPPER_H
#include "Sonde.h"
#include "conn.h"
class ConnChasemapper : public Conn {
public:
void init();
void netsetup();
void updateSonde( SondeInfo *si );
void updateStation( PosInfo *pi );
};
extern ConnChasemapper connChasemapper;
#endif