Modified for W5500 Ethernet initialize Added the Ethernet interface re-initialize code Added the connection retry

Dependents:   ThingPlug_Ethernet_Example

Fork of GMMP_mbed by Eric Jung

Committer:
hkjung
Date:
Wed Aug 12 08:58:58 2015 +0000
Revision:
5:9bbb6933559b
Parent:
0:7e575e5f88ec
Ethernet interface reinitialize code added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lesmin 0:7e575e5f88ec 1 /** GMMP Operation 중 제어 명령 함수
lesmin 0:7e575e5f88ec 2 * @file GMMP_Control.h
lesmin 0:7e575e5f88ec 3 * @date 2013/11/21
lesmin 0:7e575e5f88ec 4 * @version 0.0.0.1
lesmin 0:7e575e5f88ec 5 * @ref GMMPHeader참조
lesmin 0:7e575e5f88ec 6 **/
lesmin 0:7e575e5f88ec 7
lesmin 0:7e575e5f88ec 8 #ifndef GMMP_CONTROL_H_
lesmin 0:7e575e5f88ec 9 #define GMMP_CONTROL_H_
lesmin 0:7e575e5f88ec 10
lesmin 0:7e575e5f88ec 11 #include "Network.h"
lesmin 0:7e575e5f88ec 12 #include "Struct_Control.h"
lesmin 0:7e575e5f88ec 13
lesmin 0:7e575e5f88ec 14
lesmin 0:7e575e5f88ec 15
lesmin 0:7e575e5f88ec 16 /**
lesmin 0:7e575e5f88ec 17 *@brief 제어 명령 수신 구조체
lesmin 0:7e575e5f88ec 18 * @param pControl_Req @ref Control_Req참조
lesmin 0:7e575e5f88ec 19 * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조
lesmin 0:7e575e5f88ec 20 */
lesmin 0:7e575e5f88ec 21 int GMMP_Control_Req(Control_Req* pControl_Req);
lesmin 0:7e575e5f88ec 22
lesmin 0:7e575e5f88ec 23 /**
lesmin 0:7e575e5f88ec 24 * @brief 제어 명령 확인 전송 구조체
lesmin 0:7e575e5f88ec 25 * @param pControl_Req @ref Control_Rsp참조
lesmin 0:7e575e5f88ec 26 * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조
lesmin 0:7e575e5f88ec 27 */
lesmin 0:7e575e5f88ec 28 int GMMP_Control_Rsp(Control_Rsp* pControl_Req);
lesmin 0:7e575e5f88ec 29
lesmin 0:7e575e5f88ec 30 #endif /* GMMP_CONTROL_H_ */