//
|
// Created by YY on 2020/1/7.
|
//
|
|
#ifndef MYAPPLICATION2_COMM_IF_H
|
#define MYAPPLICATION2_COMM_IF_H
|
|
#include <cstdint>
|
|
void MA_MainProcMsgEntry(int cmd, const char *value);
|
|
void MA_NdkStart(void);
|
void MA_ReqRtkPlatformConfig(void);
|
void MA_RtkPlatformConnect(int conn, const char *ip, int port);
|
void MA_RtkPlatformRegister(int reg, const uint8_t *pwd, int length);
|
void MA_RtkPlatformLogin(int login);
|
|
#endif //MYAPPLICATION2_COMM_IF_H
|