Skip to content

Commit

Permalink
Update board-specific defines (#7875)
Browse files Browse the repository at this point in the history
Fixes #6805

Update the build.board for several boards which were originally added
with a generic type.
  • Loading branch information
earlephilhower authored Feb 14, 2021
1 parent 483519f commit e4435fa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions boards.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ gen4iod.menu.baud.3000000.upload.speed=3000000

##############################################################
huzzah.name=Adafruit Feather HUZZAH ESP8266
huzzah.build.board=ESP8266_ESP12
huzzah.build.board=ESP8266_ADAFRUIT_HUZZAH
huzzah.build.variant=adafruit
huzzah.upload.tool=esptool
huzzah.upload.maximum_data_size=81920
Expand Down Expand Up @@ -2695,7 +2695,7 @@ espectro.menu.baud.3000000.upload.speed=3000000

##############################################################
espino.name=ESPino (ESP-12 Module)
espino.build.board=ESP8266_ESP12
espino.build.board=ESP8266_ESPINO_ESP12
espino.build.variant=espino
espino.upload.tool=esptool
espino.upload.maximum_data_size=81920
Expand Down Expand Up @@ -4568,7 +4568,7 @@ d1.menu.baud.3000000.upload.speed=3000000

##############################################################
nodemcu.name=NodeMCU 0.9 (ESP-12 Module)
nodemcu.build.board=ESP8266_NODEMCU
nodemcu.build.board=ESP8266_NODEMCU_ESP12
nodemcu.build.variant=nodemcu
nodemcu.upload.tool=esptool
nodemcu.upload.maximum_data_size=81920
Expand Down Expand Up @@ -4767,7 +4767,7 @@ nodemcu.menu.baud.3000000.upload.speed=3000000

##############################################################
nodemcuv2.name=NodeMCU 1.0 (ESP-12E Module)
nodemcuv2.build.board=ESP8266_NODEMCU
nodemcuv2.build.board=ESP8266_NODEMCU_ESP12E
nodemcuv2.build.variant=nodemcu
nodemcuv2.upload.tool=esptool
nodemcuv2.upload.maximum_data_size=81920
Expand Down Expand Up @@ -6787,7 +6787,7 @@ esp210.menu.baud.3000000.upload.speed=3000000

##############################################################
espinotee.name=ThaiEasyElec's ESPino
espinotee.build.board=ESP8266_ESP13
espinotee.build.board=ESP8266_ESPINO_ESP13
espinotee.build.variant=espinotee
espinotee.upload.tool=esptool
espinotee.upload.maximum_data_size=81920
Expand Down
10 changes: 5 additions & 5 deletions tools/boards.txt.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
( 'huzzah', {
'name': 'Adafruit Feather HUZZAH ESP8266',
'opts': {
'.build.board': 'ESP8266_ESP12',
'.build.board': 'ESP8266_ADAFRUIT_HUZZAH',
'.build.variant': 'adafruit',
},
'macro': [
Expand Down Expand Up @@ -428,7 +428,7 @@
( 'nodemcu', {
'name': 'NodeMCU 0.9 (ESP-12 Module)',
'opts': {
'.build.board': 'ESP8266_NODEMCU',
'.build.board': 'ESP8266_NODEMCU_ESP12',
'.build.variant': 'nodemcu',
},
'macro': [
Expand Down Expand Up @@ -462,7 +462,7 @@
( 'nodemcuv2', {
'name': 'NodeMCU 1.0 (ESP-12E Module)',
'opts': {
'.build.board': 'ESP8266_NODEMCU',
'.build.board': 'ESP8266_NODEMCU_ESP12E',
'.build.variant': 'nodemcu',
},
'macro': [
Expand Down Expand Up @@ -652,7 +652,7 @@
( 'espino', {
'name': 'ESPino (ESP-12 Module)',
'opts': {
'.build.board': 'ESP8266_ESP12',
'.build.board': 'ESP8266_ESPINO_ESP12',
'.build.variant': 'espino',
},
'macro': [
Expand All @@ -671,7 +671,7 @@
( 'espinotee', {
'name': 'ThaiEasyElec\'s ESPino',
'opts': {
'.build.board': 'ESP8266_ESP13',
'.build.board': 'ESP8266_ESPINO_ESP13',
'.build.variant': 'espinotee',
},
'macro': [
Expand Down

0 comments on commit e4435fa

Please sign in to comment.