24 lines
550 B
C
24 lines
550 B
C
/***
|
|
* @Author: shenghao.xu
|
|
* @Date: 2023-04-06 09:34:36
|
|
* @LastEditors: shenghao.xu
|
|
* @LastEditTime: 2023-04-06 09:34:43
|
|
* @Description:
|
|
* @email:545403892@qq.com
|
|
* @Copyright (c) 2023 by shenghao.xu, All Rights Reserved.
|
|
*/
|
|
#ifndef AGREEMENT_SLAVE_H
|
|
#define AGREEMENT_SLAVE_H
|
|
#include "../lib/inc/lib.h"
|
|
#include "agreement_frame.h"
|
|
|
|
#pragma pack(1)
|
|
|
|
#pragma pack()
|
|
|
|
extern bool agreement_slave_init(void);
|
|
extern void agreement_slave_req(uint8_t *data, uint16_t len);
|
|
|
|
extern bool mock_config_query_data(void);
|
|
#endif // AGREEMENT_SLAVE_H
|