Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
- <title></title>
- <meta name="generator" content="LibreOffice 7.3.7.2 (Linux)"/>
- <meta name="author" content="s e"/>
- <meta name="created" content="2009-04-16T11:32:00"/>
- <meta name="changed" content="2020-12-13T19:53:00"/>
- <style type="text/css">
- @page { size: 8.27in 11.69in; margin-left: 0.79in; margin-right: 0.79in; margin-top: 0.79in; margin-bottom: 0.64in }
- p { line-height: 115%; margin-bottom: 0.1in; background: transparent }
- h1 { color: #000000; orphans: 0; widows: 0; margin-bottom: 0.08in; direction: ltr; background: transparent; page-break-after: avoid }
- h1.western { font-family: "Arial", serif; font-size: 24pt; so-language: zxx; font-weight: bold }
- h1.cjk { font-family: "Tahoma"; font-size: 24pt; so-language: zxx; font-weight: bold }
- h1.ctl { font-family: "Courier New"; font-size: 12pt }
- td p { color: #000000; orphans: 0; widows: 0; direction: ltr; background: transparent }
- td p.western { font-family: "Times New Roman", serif; font-size: 12pt; so-language: zxx }
- td p.cjk { font-family: "Tahoma"; font-size: 12pt; so-language: zxx }
- td p.ctl { font-family: "Courier New"; font-size: 12pt }
- th p { color: #000000; text-align: center; orphans: 0; widows: 0; direction: ltr; background: transparent }
- th p.western { font-family: "Times New Roman", serif; font-size: 12pt; so-language: zxx; font-weight: bold }
- th p.cjk { font-family: "Tahoma"; font-size: 12pt; so-language: zxx; font-weight: bold }
- th p.ctl { font-family: "Courier New"; font-size: 12pt }
- code.western { font-family: "Courier New", serif }
- code.cjk { font-family: "Courier New" }
- a:link { color: #000080; text-decoration: underline }
- a.western:link { so-language: zxx }
- a.cjk:link { so-language: zxx }
- </style>
- </head>
- <body lang="en-US" link="#000080" vlink="#800000" dir="ltr"><h1 lang="zxx" class="western">
- <span style="font-variant: normal"><font color="#000000"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">ESP
- series Flash chip</span></span></span></font></font></span></h1>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">Each
- ESP series consists of ESP8266EX chip + Flash memory.</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">The
- Flash memory chip ID (hexadecimal 6 characters) can be checked with:</span></span></span></font></font></font></span></font></font></font></p>
- <table width="930" cellpadding="2" cellspacing="1">
- <col width="922"/>
- <tr>
- <td width="922" height="23" valign="top" style="border: 2.25pt double #808080; padding: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <code class="western"><font face="Courier New, serif">/*</font></code><br/>
- <code class="western"><font face="Courier New, serif">*
- Chip ID & Chip Size get</font></code><br/>
- <code class="western"><font face="Courier New, serif">*/</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">void
- setup() {</font></code><br/>
- <code class="western"><font face="Courier New, serif">delay(1000);</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.begin(9600);</font></code><br/>
- <code class="western"><font face="Courier New, serif">}</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">void
- loop() {</font></code><br/>
- <code class="western"><font face="Courier New, serif">uint32_t
- chipId;</font></code><br/>
- <code class="western"><font face="Courier New, serif">uint32_t
- chipSize;</font></code><br/>
- <code class="western"><font face="Courier New, serif">uint32_t
- chipSizeK;</font></code><br/>
- <code class="western"><font face="Courier New, serif">int
- chipSizeM;</font></code><br/>
- <code class="western"><font face="Courier New, serif">/*</font></code><br/>
- <code class="western"><font face="Courier New, serif">*
- Chip ID</font></code><br/>
- <code class="western"><font face="Courier New, serif">*
- 00 - always 00 (Chip ID use only 3 byte)</font></code><br/>
- <code class="western"><font face="Courier New, serif">*
- 17 - 2^xx is size in Byte</font></code><br/>
- <code class="western"><font face="Courier New, serif">*
- 40 - memory Type</font></code><br/>
- <code class="western"><font face="Courier New, serif">*
- C8 - manufacturer ID</font></code><br/>
- <code class="western"><font face="Courier New, serif">*/</font></code><br/>
- <code class="western"><font face="Courier New, serif">chipId
- =
- ESP.getFlashChipId();</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print("getFlashChipId=");</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print(chipId,HEX);</font></code><br/>
- <code class="western"><font face="Courier New, serif">delay(100);</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">chipSize
- = ESP.getFlashChipSizeByChipId();</font></code><br/>
- <code class="western"><font face="Courier New, serif">chipSizeK
- = chipSize/1024;</font></code><br/>
- <code class="western"><font face="Courier New, serif">chipSizeM
- = chipSizeK/1024;</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print("
- getFlashChipSizeByChipId=");</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print(chipSize);</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print("Bytes[");</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print(chipSizeM);</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print("MBytes]");</font></code><br/>
- <code class="western"><font face="Courier New, serif">delay(100);</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">chipSize
- = ESP.getFlashChipRealSize();</font></code><br/>
- <code class="western"><font face="Courier New, serif">chipSizeK
- = chipSize/1024;</font></code><br/>
- <code class="western"><font face="Courier New, serif">chipSizeM
- = chipSizeK/1024;</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print("
- getFlashChipRealSiz=");</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print(chipSize);</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print("Bytes[");</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.print(chipSizeM);</font></code><br/>
- <code class="western"><font face="Courier New, serif">Serial.println("MBytes]");</font></code><br/>
- <code class="western"><font face="Courier New, serif">delay(1000);</font></code><br/>
- <code class="western"><font face="Courier New, serif">}</font></code></p>
- </td>
- </tr>
- </table>
- <p lang="zxx" style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0.08in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">The
- first two characters of the chip ID are the capacity (hexadecimal
- number indicating 2 to the power of XX 14 = 1MByte 15 = 2MByte 16 =
- 4MByte 17 = 8MByte)</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">The
- next two characters are the chip series (model) number. The last two
- characters are the chip vendor.</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">By
- referring to this, the capacity, series number, and chip vendor can
- be found from the chip ID.</span></span></span></font></font></font></span><br/>
- <br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">In
- addition, data sheets published by chip vendors may have the
- following notation:</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">M7-M0:
- Vendor code (MANUFACTURER ID)</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">ID15-ID0:
- Series number + capacity</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">(Example
- of Winbond W25Q32)</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">M7-M0:
- EFH</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">ID15-ID0:
- 4016h (32MBit version of W25Q series)</span></span></span></font></font></font></span></font></font></font></p>
- <table width="930" cellpadding="2" cellspacing="1">
- <col width="922"/>
- <tr>
- <td width="922" height="23" valign="top" style="border: 2.25pt double #808080; padding: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <code class="western"><font face="Courier New, serif">ESP-01</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440C8
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-01S(2
- types)</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440EF
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=146085
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-07</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440E0
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-07S</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640EF
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-11</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440E0
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-12E</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640EF
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-12SESP-01</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440C8
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-01S(2
- types)</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440EF
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=146085
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-07</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440E0
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-07S</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640EF
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-11</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440E0
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-12E</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640EF
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-12S(2
- types)</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640EF
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=16301C
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-13</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640E0
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-100</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1740EF
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=8388608Bytes[8MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-201</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440E0
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-202</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640C8
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-WROOM-02(4MBytes
- ver)</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640A1
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <code class="western"><font face="Courier New, serif">(other
- type)</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640EF
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=16301C
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-13</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640E0
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-100</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1740EF
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=8388608Bytes[8MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-201</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1440E0
- getFlashChipSizeByChipId=1048576Bytes[1MBytes]
- getFlashChipRealSiz=1048576Bytes[1MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-202</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640C8
- getFlashChipSizeByChipId=4194304Bytes[4MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-WROOM-02(4MBytes
- ver)</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1640A1
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=4194304Bytes[4MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-WROOM-02(2MBytes
- ver) several versions</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1540EF
- getFlashChipSizeByChipId=2097152Bytes[2MBytes]
- getFlashChipRealSiz=2097152Bytes[2MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1540C8
- getFlashChipSizeByChipId=2097152Bytes[2MBytes]
- getFlashChipRealSiz=2097152Bytes[2MBytes]</font></code><br/>
- <br/>
- <code class="western"><font face="Courier New, serif">ESP-WROOM-02D</font></code><br/>
- <code class="western"><font face="Courier New, serif">getFlashChipId=1540A1
- getFlashChipSizeByChipId=0Bytes[0MBytes]
- getFlashChipRealSiz=2097152Bytes[2MBytes]</font></code></p>
- </td>
- </tr>
- </table>
- <p lang="zxx" style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">The
- specifications of ESP-WROOM-02 suddenly changed around 2016 and
- changed from 4M to 2M.</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">Although
- it is unconfirmed, it seems that 4MBytes version is still available
- as of 2018.</span></span></span></font></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-right: -0.15in; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <table width="642" cellpadding="2" cellspacing="1" style="page-break-before: always">
- <col width="110"/>
- <col width="96"/>
- <col width="71"/>
- <col width="156"/>
- <col width="109"/>
- <col width="66"/>
- <tr valign="top">
- <th width="110" style="border-top: 2.25pt double #808080; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0.02in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">model</font></p>
- </th>
- <th width="96" style="border-top: 2.25pt double #808080; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0.02in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">vendor</font></p>
- </th>
- <th width="71" style="border-top: 2.25pt double #808080; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0.02in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Chip ID</font></p>
- </th>
- <th width="156" style="border-top: 2.25pt double #808080; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0.02in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Chip vendor</font></p>
- </th>
- <th width="109" style="border-top: 2.25pt double #808080; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0.02in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Chip model number</font></p>
- </th>
- <th width="66" style="border: 2.25pt double #808080; padding: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Chip capacity [MByte]</font></p>
- </th>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-01</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1440C8</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">GigaDevice</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">GD25Q80B</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">1M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td rowspan="3" width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-01S</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1440EF</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Winbond</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">W25Q80</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">1M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x146085</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Puya Semiconductor</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">P25Q80H</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">1M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">unknown</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x146053</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Bright Moon Semi</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">T25Q80</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">1M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-07</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1440E0</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BergMicro, Paragon</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BG25Q80</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">1M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-07S</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640EF</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Winbond</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">W25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-11</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1440E0</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BergMicro, Paragon</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BG25Q80</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">1M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-12</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640EF</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Winbond</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">W25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-12E</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640EF</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Winbond</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">W25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td rowspan="3" width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-12F</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640E0</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BergMicro</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BG25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">DOIT.AM</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x164020</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">XMC</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">XM25QH32B</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">no-name clone</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">0x16400B</span></span></span></font></font></font></span><font face="Times New Roman, serif">
- </font>
- </p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">XTX Technology</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">XT25F32B</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td rowspan="2" width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-12S</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640EF</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Winbond</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">W25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x16301C</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">EON Silicon Devices</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">EN25Q32B</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-13</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">AI-THINKER</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640E0</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BergMicro</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BG25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-100</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Cloud-Linked</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1740EF</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Winbond</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">W25Q64</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">8M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-201</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">YISON (??)</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1440E0</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BergMicro</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">BG25Q80</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">1M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-202</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">YISON</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640C8</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">GigaDevice</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">GD25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td rowspan="3" width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-WROOM-02</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESPRESSIF</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1640A1</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Shanghai Fudan
- Microelectronics Group </font>
- </p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">FM25Q32</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESPRESSIF</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1540EF</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Winbond</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">W25Q16</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">2M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESPRESSIF</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1540C8</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">GigaDevice</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">GD25Q16</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">2M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-WROOM-02D</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESPRESSIF</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1540A1</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Shanghai Fudan
- Microelectronics Group </font>
- </p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">FM25Q16</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">2M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESP-WROOM-02U</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">ESPRESSIF</font></p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1540A1</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Shanghai Fudan
- Microelectronics Group </font>
- </p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">FM25Q16</font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">2M</font></p>
- </td>
- </tr>
- <tr valign="top">
- <td width="110" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">unknown</font></p>
- </td>
- <td width="96" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <br/>
- </p>
- </td>
- <td width="71" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">0x1620C2</font></p>
- </td>
- <td width="156" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">Macronix</font></p>
- </td>
- <td width="109" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0in"><p lang="zxx" style="orphans: 0; widows: 0">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">MX25L3205D</span></span></span></font></font></font></span></font></font></font></p>
- </td>
- <td width="66" style="border-top: none; border-bottom: 2.25pt double #808080; border-left: 2.25pt double #808080; border-right: 2.25pt double #808080; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0.02in; padding-right: 0.02in"><p lang="zxx" class="western" style="orphans: 0; widows: 0">
- <font face="Times New Roman, serif">4M</font></p>
- </td>
- </tr>
- </table>
- <p lang="zxx" style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0.08in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><font face="Times New Roman, serif">Macronix
- </font><span style="font-variant: normal"><font color="#000000"><font face="SourceSansLocal, serif"><font size="3" style="font-size: 12pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">MX25L3205D</span></span></span></font></font></font></span><font face="Times New Roman, serif">
- only works in DIO mode, not DOUT</font></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0.08in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">As
- an aside</span></span></span></font></font></font></span><a class="western" href="https://translate.googleusercontent.com/translate_c?depth=1&hl=en&prev=search&rurl=translate.google.com&sl=ja&sp=nmt4&u=http://www.elinux.org/images/f/f5/Winbond-w25q32.pdf&xid=17259,1500000,15700019,15700186,15700190,15700256,15700259,15700262,15700265&usg=ALkJrhhEq1Crn-DVoChoZbPgtc-zQPjGYA"><font color="#000080"><font face="Times New Roman, serif"><u>,</u></font></font></a><font face="Times New Roman, serif">there
- are the following three types of </font><a class="western" href="https://translate.googleusercontent.com/translate_c?depth=1&hl=en&prev=search&rurl=translate.google.com&sl=ja&sp=nmt4&u=http://www.elinux.org/images/f/f5/Winbond-w25q32.pdf&xid=17259,1500000,15700019,15700186,15700190,15700256,15700259,15700262,15700265&usg=ALkJrhhEq1Crn-DVoChoZbPgtc-zQPjGYA"><font color="#000080"><font face="Times New Roman, serif"><u>W25Q
- series from</u></font></font></a><font face="Times New Roman, serif">Winbond.</font><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">32MBit
- W25Q32, 16MBit W25Q16, 8MBit W25Q80</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">The
- code W25Q80 seems to be mistaken for 80MBit (10MByte), so I think
- W25Q08 is easier to understand.</span></span></span></font></font></font></span><br/>
- <br/>
- </font></font></font><br/>
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0.08in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">ESP.getFlashChipId
- ()</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">ESP.getFlashChipSizeByChipId
- ()</span></span></span></font></font></font></span><br/>
- <span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><font size="4" style="font-size: 14pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">ESP.getFlashChipRealSize
- ()</span></span></span></font></font></font></span><br/>
- </font></font></font><br/>
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Helvetica Neue, serif"><font size="2" style="font-size: 10pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">esptool.py
- --port /dev/ttyUSB0 flash_id</span></span></span></font></font></font></span><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal"> 
-     (linux)</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Helvetica Neue, serif"><font size="2" style="font-size: 10pt"><span style="letter-spacing: normal"><span style="font-style: normal"><span style="font-weight: normal">esptool.py
- -p COMx flash_id</span></span></span></font></font></font></span><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal"> 
-       (Windoze)</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <br/>
- </p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Manufacturer
- ID byte</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Winbond
- EF</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">GigaDevice
- C8</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Puya
- 85</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Bright
- Moon 53</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">BergMicro
- E0</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">XMC
- 20</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">XTX
- 0B</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Eon
- 1C</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Shanghai
- Fundan A1</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Macronix
- C2</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Hua
- Hong Zhixin 68</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">ISSI
- 9D</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Paragon
- E0 (same as Berg - oopsie or clone?)</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Zbit
- 5E</span></font></font></span></font></font></font></p>
- <p lang="zxx" style="line-height: 100%; orphans: 2; widows: 2; margin-bottom: 0in">
- <font color="#000000"><font face="Times New Roman, serif"><font size="3" style="font-size: 12pt"><span style="font-variant: normal"><font color="#000000"><font face="Times New Roman, serif"><span style="letter-spacing: normal">Zetta
- BA</span></font></font></span></font></font></font></p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement