yy1717
2020-08-14 576d819c4d9aabd1a8d102ae9c3bc13c9165ee1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Created by YY on 2019/12/21.
//
 
#ifndef RTKDRIVERTEST_MCU_IF_H
#define RTKDRIVERTEST_MCU_IF_H
 
#include <cstdint>
 
void ConfigMCU(void);
void SendRtkToMcu(const uint8_t *data, int length);
void ParseMcuInit(void);
void ParseMcu(const uint8_t *data, int length);
void SendMcuCommand(uint16_t id, const uint8_t *data, int length);
 
void UploadDfuFileEnd(void);
void UploadDfuFile(const uint8_t *file, int length);
void ReadCard(void);
void ShutdownInd(int timeout);
 
#endif //RTKDRIVERTEST_MCU_IF_H