Murata Type YD Wi-Fi driver

Dependents:   easy-connect-type-yd

Revision:
0:35a2186cf186
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TypeYDPins.h	Wed Jul 12 10:49:10 2017 +0000
@@ -0,0 +1,45 @@
+/* Murata Type-YD implementation of NetworkInterfaceAPI
+ * Copyright (c) 2017 Murata Manufacturing Co., LTD.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef TYPEYD_PINS_H
+#define TYPEYD_PINS_H
+
+#include "mbed.h"
+
+#if !defined(MBED_CONF_APP_WIFI_TX)
+#define MBED_CONF_APP_WIFI_TX   PA_9
+#endif
+#if !defined(MBED_CONF_APP_WIFI_RX)
+#define MBED_CONF_APP_WIFI_RX   PA_10
+#endif
+#if !defined(MBED_CONF_APP_WIFI_CTS)
+#define MBED_CONF_APP_WIFI_CTS   NC // PA11
+#endif
+#if !defined(MBED_CONF_APP_WIFI_RTS)
+#define MBED_CONF_APP_WIFI_RTS   NC // PA12
+#endif
+#if !defined(MBED_CONF_APP_WIFI_RESET)
+#define MBED_CONF_APP_WIFI_RESET   PA_8
+#endif
+#if !defined(MBED_CONF_APP_WIFI_ALARM)
+#define MBED_CONF_APP_WIFI_ALARM   NC
+#endif
+#if !defined(MBED_CONF_APP_WIFI_BAUD)
+#define MBED_CONF_APP_WIFI_BAUD   115200
+#endif
+
+#endif
+