added correction data for gnss
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* @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
|
||||
Reference in New Issue
Block a user