-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Switch default FW to "2.2.2-dev(38a443e)" (menu:2.2.1+100) #6272
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
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
620b465
enable by default latest 2.2.x firmware, including fixed espnow
d-a-v 6740cca
LittleFS: avoid crash when FS size is 0
d-a-v 3a1bc95
serial speed defaults to 921k in menu for all boards (testing, since …
d-a-v d83c31d
flash size defaults: 1M for generic board, not empty FS for all
d-a-v f789003
default FW for PlatformIO too
d-a-v 6048f23
cosmetics
d-a-v ee7fac5
Merge branch 'master' into defaultFW2.2.1+100
d-a-v 3387574
8000
fix boards.txt
d-a-v 802ab5b
revert serial speeds
d-a-v 38cd19f
Merge branch 'master' into defaultFW2.2.1+100
d-a-v 59596ec
merge: regenerate boards.txt
d-a-v 07c463e
+2M64
d-a-v File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
serial speed defaults to 921k in menu for all boards (testing, since …
…esptool.py)
- Loading branch information
commit 3a1bc9526926afa2f26dbcfd431097f825919843
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -542,7 +542,7 @@ | |
'flashfreq_40', | ||
'4M', | ||
], | ||
'serial': '57', | ||
# 'serial': '57', | ||
'desc': [ '*TODO*' ], | ||
}), | ||
( 'd1_mini', { | ||
|
@@ -557,7 +557,7 @@ | |
'flashfreq_40', | ||
'4M', | ||
], | ||
'serial': '921', | ||
# 'serial': '921', | ||
'desc': [ 'Product page: https://www.wemos.cc/' ], | ||
}), | ||
( 'd1_mini_pro', { | ||
|
@@ -572,7 +572,7 @@ | |
'flashfreq_40', | ||
'16M', | ||
], | ||
'serial': '921', | ||
# 'serial': '921', | ||
'desc': [ 'Product page: https://www.wemos.cc/' ], | ||
}), | ||
( 'd1_mini_lite', { | ||
|
@@ -587,7 +587,7 @@ | |
'flashfreq_40', | ||
'1M', | ||
], | ||
'serial': '921', | ||
# 'serial': '921', | ||
'desc': [ | ||
'Parameters in Arduino IDE:', | ||
'~~~~~~~~~~~~~~~~~~~~~~~~~~', | ||
|
@@ -625,7 +625,7 @@ | |
'flashfreq_40', | ||
'4M', | ||
], | ||
'serial': '921', | ||
# 'serial': '921', | ||
'desc': [ 'Product page: https://www.wemos.cc/' ], | ||
}), | ||
( 'espino', { | ||
|
@@ -767,7 +767,7 @@ | |
'flashfreq_40', | ||
'4M', | ||
], | ||
'serial': '921', | ||
# 'serial': '921', | ||
'desc': [ 'The Oak requires an `Serial Adapter`_ for a serial connection or flashing; its micro USB port is only for power.', | ||
'', | ||
'To make a serial connection, wire the adapter\'s **TX to P3**, **RX to P4**, and **GND** to **GND**. Supply 3.3v from the serial adapter if not already powered via USB.', | ||
|
@@ -787,7 +787,7 @@ | |
'flashfreq_40', | ||
'4M', | ||
], | ||
'serial': '921', | ||
# 'serial': '921', | ||
'desc': [ 'Product page: https://wifiduino.com/esp8266' ], | ||
}), | ||
( 'wifi_slot', { | ||
|
@@ -1573,7 +1573,7 @@ def usage (name,ret): | |
# entry point | ||
|
||
lwip = 2 | ||
default_speed = '115' | ||
default_speed = '921' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a little worried here about the speed change, see above comment. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Speed change is now reverted. |
||
led_default = 2 | ||
led_max = 16 | ||
nofloat = False | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why disabling the hardcoded serial speeds? If it's 921 it will silently use 400k. If it's 56K, there might be a HW reason for it on those specific boards....
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(like a really, really cheap USB<->serial chip, or high resistance/capacitance on the lines due to something else like LEDs sharing the pin, etc.)
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's true. I was wrongly thinking esptool would try at lower rates.
I will revert this.
edit: done