20 lines
527 B
C
20 lines
527 B
C
/***
|
|
* @Author: shenghao.xu
|
|
* @Date: 2023-04-06 09:07:43
|
|
* @LastEditors: shenghao.xu
|
|
* @LastEditTime: 2023-04-06 09:07:56
|
|
* @Description:
|
|
* @email:545403892@qq.com
|
|
* @Copyright (c) 2023 by shenghao.xu, All Rights Reserved.
|
|
*/
|
|
#ifndef __AGREEMENT_H__
|
|
#define __AGREEMENT_H__
|
|
#include "../lib/inc/lib.h"
|
|
#include "agreement_frame.h"
|
|
#include "agreement_slave.h"
|
|
|
|
extern bool agreement_init(const agreement_init_t *const init);
|
|
extern bool agreement_master_req(const command_req_t *const data);
|
|
|
|
#endif // __AGREEMENT_H__
|