Eric Jung / GMMP_mbed_Ethernet_Reinit

Dependents:   ThingPlug_Ethernet_Example

Fork of GMMP_mbed by Eric Jung

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GMMP_Control.h Source File

GMMP_Control.h

Go to the documentation of this file.
00001  /** GMMP Operation 중 제어 명령 함수
00002  * @file GMMP_Control.h
00003  * @date 2013/11/21
00004  * @version 0.0.0.1
00005  * @ref GMMPHeader참조
00006  **/
00007 
00008 #ifndef GMMP_CONTROL_H_
00009 #define GMMP_CONTROL_H_
00010 
00011 #include "Network.h"
00012 #include "Struct_Control.h"
00013 
00014 
00015 
00016 /**
00017  *@brief 제어 명령 수신 구조체
00018  * @param pControl_Req @ref Control_Req참조
00019  * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조
00020  */
00021 int GMMP_Control_Req(Control_Req*  pControl_Req);
00022 
00023 /**
00024  * @brief 제어 명령 확인 전송 구조체
00025  * @param pControl_Req @ref Control_Rsp참조
00026  * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조
00027  */
00028 int GMMP_Control_Rsp(Control_Rsp*  pControl_Req);
00029 
00030 #endif /* GMMP_CONTROL_H_ */