This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
|
package reachview
|
|
|
|
const (
|
|
eventRestartRTKLib = "restart rtklib"
|
|
)
|
|
|
|
// RestartRTKLib asks the ReachRS module to restart the RTKlib
|
|
func (c *Client) RestartRTKLib() error {
|
|
return c.Emit(eventRestartRTKLib, nil)
|
|
}
|