Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of GMMP by
Diff: Operation/Heartbeat/GMMP_Heartbeat.h
- Revision:
- 0:32c20cfb2b30
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Operation/Heartbeat/GMMP_Heartbeat.h Thu Jul 23 00:55:15 2015 +0000 @@ -0,0 +1,29 @@ +/** GMMP Operation 중 Heartbeat 명령 힘수 +* @file GMMP_Heartbeat.h +* @date 2013/11/21 +* @version 0.0.0.1 +* @ref GMMPHeader참조 +**/ + +#ifndef GMMP_HEARBEAT_H_ +#define GMMP_HEARBEAT_H_ + +#include "Network.h" +#include "Struct_Heartbeat.h" + + +/** + * + * @param pHB_Req @ref HB_Req 참조 + * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조 + */ +int GMMP_Heartbeat_Req(HB_Req* pHB_Req); + +/** + * + * @param pHB_Rsp @ref HB_Rsp 참조 + * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조 + */ +int GMMP_Heartbeat_Rsp(HB_Rsp* pHB_Rsp); + +#endif /* GMMP_HEARBEAT_H_ */
