Skip to content

Commit cb1d73a

Browse files
committed
Fix missing board and display the board id in place of 'Unknwon Board'
1 parent 58d0452 commit cb1d73a

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

_board/ai_thinker_esp32-c3s-2m.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
layout: download
3+
board_id: "ai_thinker_esp32-c3s-2m"
4+
title: "ESP-C3-32S (2M) Download"
5+
name: "ESP-C3-32S (2M)"
6+
manufacturer: "Ai-Thinker"
7+
board_url: "https://docs.ai-thinker.com/en/esp32c3"
8+
board_image: "ai_thinker_esp32-c3s.jpg"
9+
date_added: 2022-02-22
10+
family: esp32c3
11+
features:
12+
- Breadboard-Friendly
13+
- Wi-Fi
14+
- Bluetooth/BTLE
15+
---
16+
This is an entry-level development board based on Espressif ESP32-C3 SoC, which is equipped with a RISC-V 32-bit single-core processor, operating frequency up to 160 MHz, supports secondary development without using other microcontrollers or processors. The ESP32-C3 is an highly integrated low power Wi-Fi and Bluetooth system-level chip (SoC), designed for various applications such as internet of things (IoT), mobile devices, wearable electronics, smart home, etc.
17+
18+
### Features
19+
20+
- Onboard ESP-C3-32S module that comes with a PCB antenna
21+
- Onboard CH340, USB to UART converter
22+
- RGB 3-in-1 LED, convenient for secondary development
23+
- USB port for power input, firmware programming, or UART debugging
24+
- 2x15pin extension headers, breakout all the I/O pins of the module
25+
- 2x keys, used as reset or user-defined
26+
27+
### Specifications
28+
29+
- Complete Wi-Fi 802.11b/g/n, 1T1R mode data rate up to 150Mbps
30+
- Support BLE5.0 and rate support: 125Kbps, 500Kbps, 1Mbps,2Mbps
31+
- Onboard ESP32-C3 chip, 32-bit RISC-V single-core processor, supports a clock frequency of up to 160 MHz, with 400 KB SRAM, 384 KB ROM, 8KB RTC SRAM
32+
- Support UART/PWM/GPIO/ADC/I2C/I2S interface, temperature sensor, pulse counter
33+
- SMD-38 package
34+
- Integrated Wi-Fi MAC/ BB/RF/PA/LNA/BLE
35+
- Support multiple sleep modes, deep sleep electric current is less than 5uA
36+
- UART rate up to 5Mbps
37+
- Support STA/AP/STA+AP mode and mix mode
38+
- Support Smart Config (APP)/AirKiss (WeChat) of Android and IOS One-click network configuration
39+
- Support UART port local upgrade and remote firmware upgrade (FOTA)
40+
- General AT commands can be better understand
41+
- Support secondary development, integrated Linux development environment
42+
- ESP-C3-32S module acquiesce in using the built-in 2MByte Flash, meanwhile support external Flash version
43+
44+
## Purchase
45+
46+
* [Aliexpress](https://www.aliexpress.com/item/1005003023291446.html)

downloads.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,10 @@ <h1>Downloads</h1>
9696
{% assign boards = site.data.files | sort: "downloads" | reverse %}
9797
{% for board in boards %}
9898
{% assign info = site.board | where: 'board_id', board.id %}
99+
{% assign info_name = info[0].name %}
99100
{% if info.size == 0 %}
100101
{% assign info = site.board | where: 'board_id', 'unknown' %}
102+
{% assign info_name = board.id %}
101103
{% endif %}
102104

103105
{% assign info = info[0] %}
@@ -119,7 +121,7 @@ <h1>Downloads</h1>
119121
{% include downloads/board_image.html board_image=info.board_image %}
120122
</div>
121123
<div class="details">
122-
<h3>{{ info.name | default: board.id }}</h3>
124+
<h3>{{ info_name | default: board.id }}</h3>
123125
By {{ info.manufacturer }}
124126
</div>
125127
</div>

0 commit comments

Comments
 (0)