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 libMiMic by
Diff: cpp/NetConfig.h
- Revision:
- 3:0a94993be1f6
- Child:
- 11:c82a7b2899b0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cpp/NetConfig.h Thu Apr 04 08:22:57 2013 +0000
@@ -0,0 +1,31 @@
+#pragma once
+////////////////////////////////////////////////////////////////////////////////
+// NetConfig.h
+////////////////////////////////////////////////////////////////////////////////
+
+#include "NyLPC_net.h"
+
+namespace MiMic
+{
+ /**
+ * Network configulation class.
+ */
+ class NetConfig
+ {
+ public:
+ NyLPC_TcNetConfig_t _inst;
+ public:
+ /**
+ * The constructor.
+ * This function initializes instance by onchip configulation data.
+ * @param i_is_factory_default
+ * Factory default flag.
+ * <ul>
+ * <li>true - The function sets factory default setting.
+ * <li>false -The function sets onchip memory configulation (default)
+ * </ul>
+ */
+ NetConfig(bool i_is_factory_default=false);
+ virtual ~NetConfig();
+ };
+ }
\ No newline at end of file
