18 lines
496 B
C
18 lines
496 B
C
/***
|
|
* @Author: shenghao.xu
|
|
* @Date: 2023-04-06 09:34:30
|
|
* @LastEditors: shenghao.xu
|
|
* @LastEditTime: 2023-04-06 09:34:49
|
|
* @Description:
|
|
* @email:545403892@qq.com
|
|
* @Copyright (c) 2023 by shenghao.xu, All Rights Reserved.
|
|
*/
|
|
#ifndef AGREEMENT_MASTER_H
|
|
#define AGREEMENT_MASTER_H
|
|
#include "agreement.h"
|
|
|
|
extern bool agreement_master_init(void);
|
|
extern bool mock_command_req_config_process(void);
|
|
extern void agreement_master_rsp(uint8_t *data, uint16_t len);
|
|
#endif // AGREEMENT_MASTER_H
|