1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-06 05:21:22 +03:00

XinaBox CW01: DIO flash mode (#5720)

This commit is contained in:
brendanvanbreda 2019-02-05 15:59:20 +02:00 committed by david gauchard
parent c218d945a4
commit c68fa39181
3 changed files with 5 additions and 5 deletions

View File

@ -1322,8 +1322,8 @@ cw01.upload.resetmethod=nodemcu
cw01.menu.CrystalFreq.26=26 MHz cw01.menu.CrystalFreq.26=26 MHz
cw01.menu.CrystalFreq.40=40 MHz cw01.menu.CrystalFreq.40=40 MHz
cw01.menu.CrystalFreq.40.build.extra_flags=-DF_CRYSTAL=40000000 -DESP8266 cw01.menu.CrystalFreq.40.build.extra_flags=-DF_CRYSTAL=40000000 -DESP8266
cw01.build.flash_mode=qio cw01.build.flash_mode=dio
cw01.build.flash_flags=-DFLASHMODE_QIO cw01.build.flash_flags=-DFLASHMODE_DIO
cw01.build.flash_freq=40 cw01.build.flash_freq=40
cw01.menu.eesz.4M=4M (no SPIFFS) cw01.menu.eesz.4M=4M (no SPIFFS)
cw01.menu.eesz.4M.build.flash_size=4M cw01.menu.eesz.4M.build.flash_size=4M

View File

@ -229,7 +229,7 @@ Product page: https://inventone.ng
XinaBox CW01 XinaBox CW01
------------ ------------
The XinaBox CW01 is an Arduino-compatible Wi-Fi development board powered by Ai-Thinker's ESP-12F, clocked at 80 MHz at 3.3V logic. It has an onboard RGB led. The XinaBox CW01(ESP8266) is an Arduino-compatible Wi-Fi development board powered by an ESP-12F, clocked at 80 MHz at 3.3V logic. The CW01 has an onboard RGB LED and 3 xBUS connection ports.
Product page: https://xinabox.cc/products/CW01 Product page: https://xinabox.cc/products/CW01

View File

@ -353,11 +353,11 @@ boards = collections.OrderedDict([
'macro': [ 'macro': [
'resetmethod_nodemcu', 'resetmethod_nodemcu',
'crystalfreq_menu', 'crystalfreq_menu',
'flashmode_qio', 'flashmode_dio',
'flashfreq_40', 'flashfreq_40',
'4M', '4M',
], ],
'desc': [ 'The XinaBox CW01 is an Arduino-compatible Wi-Fi development board powered by Ai-Thinker\'s ESP-12F, clocked at 80 MHz at 3.3V logic. It has an onboard RGB led.', 'desc': [ 'The XinaBox CW01(ESP8266) is an Arduino-compatible Wi-Fi development board powered by an ESP-12F, clocked at 80 MHz at 3.3V logic. The CW01 has an onboard RGB LED and 3 xBUS connection ports.',
'', '',
'Product page: https://xinabox.cc/products/CW01' 'Product page: https://xinabox.cc/products/CW01'
], ],