Skip to content

simple fixes #4597

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions doc/filesystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,29 @@ which is selected in IDE, you have the following options for flash size:
+---------------------------------+--------------------------+---------------------------+
| Generic module | 2M | 1M |
+---------------------------------+--------------------------+---------------------------+
| Generic module | 4M | 3M |
| Generic module | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| Adafruit HUZZAH | 4M | 1M, 3M |
| Adafruit HUZZAH | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| ESPresso Lite 1.0 | 4M | 1M, 3M |
| ESPresso Lite 1.0 | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| ESPresso Lite 2.0 | 4M | 1M, 3M |
| ESPresso Lite 2.0 | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| NodeMCU 0.9 | 4M | 1M, 3M |
| NodeMCU 0.9 | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| NodeMCU 1.0 | 4M | 1M, 3M |
| NodeMCU 1.0 | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| Olimex MOD-WIFI-ESP8266(-DEV) | 2M | 1M |
+---------------------------------+--------------------------+---------------------------+
| SparkFun Thing | 512k | 64k |
+---------------------------------+--------------------------+---------------------------+
| SweetPea ESP-210 | 4M | 1M, 3M |
| SweetPea ESP-210 | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| WeMos D1 & D1 mini | 4M | 1M, 3M |
| WeMos D1 R1, R2 & mini | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| ESPDuino | 4M | 1M, 3M |
| ESPDuino | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+
| WiFiduino | 4M | 1M, 3M |
| WiFiduino | 4M | 1M, 2M, 3M |
+---------------------------------+--------------------------+---------------------------+

**Note:** to use any of file system functions in the sketch, add the
Expand Down
3 changes: 2 additions & 1 deletion variants/d1/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
static const uint8_t SDA = PIN_WIRE_SDA;
static const uint8_t SCL = PIN_WIRE_SCL;

#define LED_BUILTIN 2 //new ESP-12E GPIO2
//new ESP-12E GPIO2
#define LED_BUILTIN 2

static const uint8_t D0 = 3;
static const uint8_t D1 = 1;
Expand Down