32 lines
541 B
C++
32 lines
541 B
C++
/**
|
|
* @file rtcmInsert.h
|
|
* @author Alexander Klein (alex@kleiax.de)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2022-03-24
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
|
|
#ifndef RTCM_INSERT_H
|
|
#define RTCM_INSERT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "NTRIPClient.h"
|
|
|
|
class RtcmInsert {
|
|
public:
|
|
RtcmInsert(uint8_t address, char* ntripHost, uint16_t ntripPort, char* ntripMountPoint, char* ntripUser, char* ntripPassword);
|
|
|
|
void loop();
|
|
|
|
private:
|
|
uint8_t address;
|
|
|
|
NTRIPClient* ntrip_c;
|
|
};
|
|
|
|
#endif // RTCM_INSERT_H
|