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

Revision:
0:7e575e5f88ec
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Operation/Notification/GMMP_Notification.h	Sun Aug 09 14:11:35 2015 +0000
@@ -0,0 +1,28 @@
+ /** GMMP Operation 중 Notification 명령 함수
+  * @date 2013/11/21
+ * @version 0.0.0.1
+ * @file GMMP_Notification.h
+ **/
+
+#ifndef GMMP_NOTIFICATION_H_
+#define GMMP_NOTIFICATION_H_
+
+#include "Network.h"
+#include "Struct_Notification.h"
+
+/**
+ *
+ * @param pNotifi_Req @ref Notifi_Req참조
+ * @param nPacketSize 실제 전송해야하는 패킷 크기
+   * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조
+ */
+int GMMP_Notifi_Req(Notifi_Req*  pNotifi_Req, int nPacketSize);
+
+/**
+ *
+ * @param pNotifi_Rsp @ref Notifi_Rsp참조
+ * @return 성공 : GMMMP_SUCCESS, 실패 : @ref ErrorCode.h 참조
+ */
+int GMMP_Notifi_Rsp(Notifi_Rsp*  pNotifi_Rsp);
+
+#endif /* GMMP_NOTIFICATION_H_ */