Skip to content

Fix improper GENERIC board IDs #7839

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 2 commits into from
Jan 27, 2021
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
4 changes: 2 additions & 2 deletions boards.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3550,7 +3550,7 @@ sonoff.menu.baud.3000000.upload.speed=3000000

##############################################################
inventone.name=Invent One
inventone.build.board=ESP8266_GENERIC
inventone.build.board=ESP8266_INVENT_ONE
inventone.build.variant=inventone
inventone.upload.tool=esptool
inventone.upload.maximum_data_size=81920
Expand Down Expand Up @@ -7448,7 +7448,7 @@ wifinfo.menu.baud.3000000.upload.speed=3000000

##############################################################
cw01.name=XinaBox CW01
cw01.build.board=ESP8266_GENERIC
cw01.build.board=ESP8266_XINABOX_CW01
cw01.build.variant=xinabox
cw01.upload.tool=esptool
cw01.upload.maximum_data_size=81920
Expand Down
4 changes: 2 additions & 2 deletions tools/boards.txt.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@
( 'inventone', {
'name': 'Invent One',
'opts': {
'.build.board': 'ESP8266_GENERIC',
'.build.board': 'ESP8266_INVENT_ONE',
'.build.variant': 'inventone',
},
'macro': [
Expand All @@ -354,7 +354,7 @@
( 'cw01', {
'name': 'XinaBox CW01',
'opts': {
'.build.board': 'ESP8266_GENERIC',
'.build.board': 'ESP8266_XINABOX_CW01',
'.build.variant': 'xinabox',
},
'macro': [
Expand Down