We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc81259 commit 1a06292Copy full SHA for 1a06292
ESP8266Interface.cpp
@@ -21,6 +21,22 @@
21
#include "nsapi_types.h"
22
23
24
+#ifndef MBED_CONF_ESP8266_TX
25
+#ifdef TARGET_FF_ARDUINO
26
+#define MBED_CONF_ESP8266_TX D1
27
+#else
28
+#define MBED_CONF_ESP8266_TX NC
29
+#endif
30
31
+
32
+#ifndef MBED_CONF_ESP8266_RX
33
34
+#define MBED_CONF_ESP8266_RX D0
35
36
+#define MBED_CONF_ESP8266_RX NC
37
38
39
40
// Firmware version
41
#define ESP8266_VERSION 2
42
mbed_lib.json
@@ -3,11 +3,11 @@
3
"config": {
4
"tx": {
5
"help": "TX pin for serial connection",
6
- "value": "NC"
+ "value": null
7
},
8
"rx": {
9
"help": "RX pin for serial connection",
10
11
12
"debug": {
13
"help": "Enable debug logs",
0 commit comments