Skip to content

Commit

Permalink
Merge branch 'chore/add_more_notes_when_compile' into 'master'
Browse files Browse the repository at this point in the history
chore: Added more prompt messages during compilation

See merge request application/esp-at!1525
  • Loading branch information
xcguang committed Feb 29, 2024
2 parents 8393a6e + b8d61a6 commit 5d7086c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def choose_project_config():

for i, module in enumerate(info_lists[platform_name]):
if len(module['description']) > 0:
print('{}. {} (description: {})'.format(i + 1, module['module_name'], module['description']))
print('{}. {} (Firmware description: {})'.format(i + 1, module['module_name'], module['description']))
else:
print('{}. {}'.format(i + 1, module['module_name']))
try:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
platform,module_name,description,version,max_tx_power,uart_port,start_channel,channel_num,country_code,uart_baudrate,uart_tx_pin,uart_rx_pin,uart_cts_pin,uart_rts_pin
PLATFORM_ESP32,WROOM-32,,4,78,1,1,13,CN,115200,17,16,15,14
PLATFORM_ESP32,WROVER-32,,4,78,1,1,13,CN,115200,22,19,15,14
PLATFORM_ESP32,PICO-D4,,4,78,1,1,13,CN,115200,22,19,15,14
PLATFORM_ESP32,SOLO-1,,4,78,1,1,13,CN,115200,17,16,15,14
PLATFORM_ESP32,MINI-1,ESP32-U4WDH chip inside,4,78,1,1,13,CN,115200,22,19,15,14
PLATFORM_ESP32,ESP32-SDIO,,4,78,-1,1,13,CN,-1,-1,-1,-1,-1
PLATFORM_ESP32,WROOM-32,"TX:17 RX:16",4,78,1,1,13,CN,115200,17,16,15,14
PLATFORM_ESP32,WROVER-32,"need PSRAM, TX:22 RX:19",4,78,1,1,13,CN,115200,22,19,15,14
PLATFORM_ESP32,PICO-D4,"TX:22 RX:19",4,78,1,1,13,CN,115200,22,19,15,14
PLATFORM_ESP32,SOLO-1,"not recommended for new design, TX:17 RX:16",4,78,1,1,13,CN,115200,17,16,15,14
PLATFORM_ESP32,MINI-1,"TX:17 RX:16, ESP32-U4WDH chip inside",4,78,1,1,13,CN,115200,22,19,15,14
PLATFORM_ESP32,ESP32-SDIO,"communicate with MCU via SDIO",4,78,-1,1,13,CN,-1,-1,-1,-1,-1
PLATFORM_ESP32,ESP32-D2WD,"2MB flash, No OTA",4,78,1,1,13,CN,115200,22,19,15,14
PLATFORM_ESP32C3,MINI-1,TX:7 RX:6,4,78,1,1,13,CN,115200,7,6,5,4
PLATFORM_ESP32C3,ESP32C3-SPI,,4,78,-1,1,13,CN,-1,-1,-1,-1,-1
PLATFORM_ESP32C3,ESP32C3_RAINMAKER,TX:7 RX:6,4,78,1,1,13,CN,115200,7,6,5,4
PLATFORM_ESP32C2,ESP32C2-2MB,"Single Wi-Fi, 2MB, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,19,20
PLATFORM_ESP32C3,MINI-1,"TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4
PLATFORM_ESP32C3,ESP32C3-SPI,"communicate with MCU via SPI",4,78,-1,1,13,CN,-1,-1,-1,-1,-1
PLATFORM_ESP32C3,ESP32C3_RAINMAKER,"support rainmaker cloud, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4
PLATFORM_ESP32C2,ESP32C2-2MB,"single Wi-Fi, 2MB, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,19,20
PLATFORM_ESP32C2,ESP32C2-4MB,"Wi-Fi + BluFi, 4MB, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4
PLATFORM_ESP32C2,ESP32C2-BLE-2MB,"Single BLE, 2MB, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4
PLATFORM_ESP32C2,ESP32C2-BLE-2MB,"single BLE, 2MB, TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4
PLATFORM_ESP32C6,ESP32C6-4MB,"TX:7 RX:6",4,78,1,1,13,CN,115200,7,6,5,4

0 comments on commit 5d7086c

Please sign in to comment.