-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
2,533 additions
and
1,380 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "lwip2"] | ||
path = tools/sdk/lwip2/builder | ||
url = https://github.com/d-a-v/esp82xx-nonos-linklayer.git |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
all install clean: builder/Makefile.arduino | ||
make -C builder -f Makefile.arduino $@ | ||
|
||
builder/Makefile.arduino: | ||
git submodule update --init --recursive builder |
32f6826
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.
for what reason default uploading speed for wemos d1 mini has been reduced from 921600 to 115200?
I switch between boards/modules many time, and changing additional parameter (in this case upload speed) is an unnecessary waste of time.
32f6826
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.
You are right, this is annoying. I was not aware of that. I'll check with the old boards.txt and try to modify the generator script #3722 to match the old behaviour. In the meantime you can try and (backup board.txt and) move the .menu.UploadSpeed.921600= entries before the others (for all your boards).
32f6826
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.
I'll be waiting :)
tnx!
P.S. I also remember that default flash size settings was 4/3SPIFFS (currently is 4/1SPIFFS)
32f6826
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.
Guys,
That's not the only problem, why the Wemos D1 R2 Mini board definition has also been changed from
to
The board name on arduino IDE has not changed so and I just spend too much time to understand why I was missing features on my sketch.
Of course if conditional compilation symbols have changed this can't works.
Is there any reason of that or do I need to change all my github repo to reflect this unattended change?
Any chance to revert back?
32f6826
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.
I'm sorry I can't find where your
b1_mini
comes from.Can you check your local repo with
For the record, the line you are refering to in this commit is this.
In current master it is this (probably the same),
in the latest generated file I proposed elsewhere to fix other bugs it is there,
and in the generator script, the board name is specified there.
I use this board every day, and it is never hand-written.
32f6826
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.
Sorry my fault, mistyping of course it's d1_mini not b1, corrected in the issue.
yes the commit you refered here is the one which changed
ESP8266_WEMOS_D1MINI
toESP8266_WEMOS_D1R2MINI
32f6826
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.
You are right saying this should not have been changed,
so I'm going to revert this back in the generator.
I will soon make a PR for boards.txt only because of this and other mistakes which are currently in master.
edit: Please check #3722
32f6826
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.
@d-a-v
Thank you very much ;-)