Program Listing for File rtcm.hpp

Return to documentation for file (/tmp/ws/src/ublox/ublox_gps/include/ublox_gps/rtcm.hpp)

#ifndef UBLOX_GPS_RTCM_HPP
#define UBLOX_GPS_RTCM_HPP

#include <cstdint>

namespace ublox_gps {

struct Rtcm {
  uint8_t id;
  uint8_t rate;
};

}  // namespace ublox_gps

#endif