自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(182)
  • 收藏
  • 关注

原创 esp-hosted 方案介绍

esp-hosted 方案主要为 Linux 或者 MCU 提供无线连接功能(WiFi 或者 BT/BLE)

2023-09-07 16:31:10 147

原创 Enable Secure Boot and Flash Encrypt on software

Enable Secure Boot and Flash Encrypt on software

2023-08-25 19:13:20 153

原创 Enable Flash encryption on software

Enable Flash Encrypthon on software

2023-08-25 19:10:29 200

原创 Enable Secure boot on software

Enable Secure Boot on software

2023-08-25 19:09:35 165

原创 ESP32 BLE 定向广播

【代码】ESP32 BLE 定向广播。

2023-08-21 14:50:35 85

原创 ESP32-C3 手动启用 Secure Boot V2 与 Flash 加密流程

1. 手动生成秘钥2. 手动加密固件并写入加密固件3. 手动写 Efuse 开启 Flash 加密和安全启动

2023-08-21 14:41:48 97

原创 ESP 系列的产品 ULP 协处理器的应用

ESP ULP 协处理器的应用

2023-08-15 21:45:35 248

原创 如何使用 AT+WEBSERVER 指令实现自定义的 Webserver html 网页配网

ESP AT 固件实现 Webserver 配网

2023-08-09 17:30:14 658

原创 The hardware conditions for the ESP32-C6 chip to enter the “ Download Mode“

On the Windows environment, you can use the Flash download tool to download the firmware (The bin file).Run Choose as , as , then press .On the Ubuntu environment, you can use the esptool to download the firmware (The bin file). For example:1、

2023-08-03 15:49:37 91

原创 The hardware conditions for the ESP32-C2 chip to enter the “ Download Mode“

On the Windows environment, you can use the Flash download tool to download the firmware (The bin file).Run Choose as , as , then press .On the Ubuntu environment, you can use the esptool to download the firmware (The bin file). For example:1、T

2023-08-03 15:45:42 82

原创 Set-up ESP-AT Environment on Windows using CMD

Before you start, the following environments need to be installed:Press , then enter to open CMD terminal.Goto the new directory you just created and clone the repository.Option 1: Using ESP-AT GithubOption 2: Using ESP-AT GiteeFirst , you need t

2023-08-03 15:40:27 619

原创 How to use the Arduino-ESP32 Library as an ESP-IDF Component

【代码】How to use the Arduino-ESP32 Library as an ESP-IDF Component。

2023-07-28 11:49:18 335

原创 The hardware conditions for the ESP32-H2 chip to enter the “ Download Mode“

ESP32-H2 downloads firmware via U0TXD(GPIO24)and U0RXD(GPIO23) by default.

2023-07-26 15:40:29 143

原创 Set up the compilation environment for ESP8266-RTOS-SDK using Git on Windows

How to set up the ESP8266-RTOS-SDK compilation environment?

2023-07-12 11:51:23 468

原创 ESP32-H2 固件烧录需满足的硬件环境整理

GPIO8 -> 拉高 (默认浮空)GPIO9 -> 拉低 (默认为高)

2023-07-07 15:23:27 397 2

原创 ESP32-C2 固件烧录需满足的硬件环境整理

下载模式要求:GPIO8 拉高GPIO9 拉低

2023-07-07 15:14:42 388

原创 ESP32-C6 固件烧录需满足的硬件环境整理

GPIO8 -> 拉高 (默认浮空)GPIO9 -> 拉低 (默认为高)

2023-07-06 20:47:58 634 2

原创 如何基于 ESP-IDF SDK 为应用工程添加自定义的 menuconfig 编译条件设置?

1、在工程的 main 目录下添加 Kconfig.projbuild 文件2、对需要添加自定义设置的参数进行定义3、在应用代码中使用自定义设置的参数4、编写 Kconfig.projbuild 文件

2023-07-05 18:40:46 198

原创 如何将 arduino-esp32 库作为 ESP-IDF 组件使用?

如今将 arduino-esp32 库作为 ESP-IDF 组件使用?

2023-07-05 18:22:45 669

原创 ESP32-S3 使用指定 key 来进行 secure boot 签名并进行 OTA 测试

1. 生成指定 secure boot 签名 key2. 软件开启 secure boot 配置3. 烧录被签名的固件4. 对新的 app.bin 使用指定 key 进行签名5. 对已经签名的 app.bin 进行 OTA 测试

2023-06-08 14:57:46 942

原创 ESP Certificate Bundle 分享

ESP x509 证书捆绑 API 通过支持自定义 x509 根证书捆绑包提供了一种用于 TLS 服务器验证的简单的方法。该捆绑包带有 Mozilla 的 NSS 根证书商店的完整根证书列表。可以通过 ESP32 x509 证书包生成实用程序 gen_crt_bundle.py,将 PEM 和 DER 证书转换为自定义捆绑格式,该格式仅存储主题名称和公钥以减少空间。ESP x509 Certificate Bundle 里面包含大部分服务器的 CA 认证根证书,会编译进固件,用来校验服务器。

2023-06-06 15:26:22 637

原创 如何实现 ESP 设备多证书管理?

基于 NVS 分区生成程序 来实现多证书管理

2023-05-31 15:47:22 860

原创 基于 ESP32 创建 HTTP Server 服务器,支持载入文件到服务器,并对载入文件进行删除管理

【代码】基于 ESP32 创建 HTTP Server 服务器,支持载入文件到服务器,并对载入文件进行删除管理。

2023-05-24 18:00:40 1002

原创 基于 ESP-Rainmaker SDK 测试 RGB LED 灯泡控制

输入 配网密码,开始配网。最后,也可以删除当前设备。Light 控制界面。

2023-04-24 19:24:37 396

原创 基于 Windows 安装 ESP32 Arduino 软件开发环境

【代码】基于 Windows 安装 ESP32 Arduino 软件开发环境。

2023-04-20 10:33:16 1043

原创 使用 2 个 ESP32-C3 & ESP-AT 测试 BLE5.0 Long Rang 模式进行数据透传的流程

【代码】使用 2 个 ESP32-C3 & ESP-AT 测试 BLE5.0 Long Rang 模式进行数据透传的流程。

2023-04-07 19:15:18 925

原创 ESP32 开启 Wi-Fi 热点与手机端 Iperf 测试 APP 来测试 ESP32 Wi-Fi AP 速率的流程

总共测试 200 秒。

2023-03-27 18:07:34 2015

原创 ESP32 different boot modes hardware requirements

Flash download mode and SPI Flash boot mode

2023-03-22 17:29:09 1094

原创 ESP HMI 智能屏方案介绍

​随着智能化设备的普及,现代化的人机交互(HMI)取代了传统的按钮和开关,允许用户通过轻触屏幕或语音来控制其他设备。乐鑫充分发挥 ESP32 系列芯片在人机交互领域的能力,面向各垂直市场,推出单芯片 HMI 智能解决方案,用户仅用一颗芯片即可实现设备联网与多样化的 HMI 功能,可广泛适用于智能家庭、大小家电、医疗健康、工业控制和教育玩具等领域。

2023-03-20 21:17:12 1398

原创 ESP32-S3 JTAG Debugging User Guide

## 1 The ESP32-S3 support use the or for JTAG debugging. For more instructions,please read the “ESP32-S3 JTAG Debugging ”guide.For windows ,You can use “ESP-IDF Tools Installer ” to install ESP-IDF SDK Environment . Please refer to the “Set up the ESP-I

2023-03-15 17:00:46 821

原创 ESP UART 介绍

ESP UART 介绍

2023-03-10 15:21:04 968

原创 音频基础知识简述 & esp-sr 上手指南

ESP32-S3 如何使用 esp-sr 进行开发

2023-03-06 21:13:30 1505

原创 ESP32-C3 BLE5.0 扩展蓝牙名称长度的流程

BLE5.0 扩展蓝牙名称长度

2023-02-22 16:06:08 1309

原创 基于 esp-idf SDK ,如何在 .cpp 工程中加入.c 的文件调用?

ESP32 C/C++ 混合编程

2023-02-22 15:40:40 661

原创 如何使用 ESP-PROG 板的 Program 接口为 ESP32-S3-WROOM-1 系列的模组烧录固件?

ESP-PROG 固件烧录

2023-02-22 15:37:00 1784

原创 Windows 环境下,使用 ESP32-S3 USB 接口进行 JTAG 调试的流程

ESP32-S3 USB JTAG 调试

2023-02-22 14:58:38 1565

原创 ESP 系列产品 Boot 启动日志对应 Strapping GPIO 的状态说明

ESP 系列产品 Boot 启动日志对应 Strapping GPIO 的状态说明

2023-01-06 18:15:00 1514

原创 ESP 常用的低功耗配置选项解析

ESP 常用的低功耗配置选项解析

2022-12-19 12:01:00 2897 2

原创 ESP 低功耗入门

ESP 低功耗模式介绍

2022-12-16 16:41:37 2633

原创 不同系列的 ESP 芯片的 GPIO 默认初始状态

不同 ESP 芯片的默认 GPIO 状态

2022-12-09 19:28:35 2640

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除