STM32F1和F4的bootloader,以及使用Ymodem串口OTA,使用DTU4G模块OTA示例代码
☆72Oct 15, 2023Updated 2 years ago
Alternatives and similar repositories for STM32-Bootloader
Users that are interested in STM32-Bootloader are comparing it to the libraries listed below. We may earn a commission when you buy through links labeled 'Ad' on this page.
Sorting:
- 使用阿里云和4G模块实现远程OTA升级☆23Oct 14, 2023Updated 2 years ago
- 基于stm32的uart串口modbus通讯协议☆24Aug 12, 2023Updated 2 years ago
- 在嵌入式开发中离不开设备通信,而在通信中稳定性最高的莫过于环形缓冲区算法,当读取速度大于写入速度时, 在环形缓冲区的支持下不会丢掉任何一个字节(硬件问题除外)。从.H文件中可看到Ringbuff的数据结构,当中有读写地址以及有效未读数据大小,以及读状态等。 向外部提供的AP…☆19Nov 25, 2019Updated 6 years ago
- 自制FOC双路驱动板☆21Jul 30, 2026Updated last week
- STM32 Bootloader,适配Ymodem下载,Ymodem下载工具上位机☆20Jul 16, 2023Updated 3 years ago
- Deploy to Railway using AI coding agents - Free Credits Offer • AdUse Claude Code, Codex, OpenCode, and more. Autonomous software development now has the infrastructure to match with Railway.
- 在单片机裸机开发中,通常延时功能函数是以同步阻塞方式实现,的确在很多设备驱动中需要同步阻塞来匹配硬件时序,但这只能存在于硬件驱动层,应用层开发时使用阻塞延时便大大降低了系统实时性和安全性,不可预测就是一块心病。为此我分享出一段由朋友:流星原创的event_delay异步延时…☆25Nov 25, 2019Updated 6 years ago
- Generic driver for AMS AS5047P magnetic encoder☆17Jun 14, 2020Updated 6 years ago
- 移植AD7606和AD9910的驱动,并且增加FFT运算☆14Aug 30, 2020Updated 5 years ago
- 针对武汉理工大学WUTE车队电动方程式赛车开发的多功能仪表项目,主控采用STM32H7B0VET6,5寸TFT屏,图形界面基于LVGL库开发,具备屏幕自动亮度调节、GUI动态显示、CAN报文解析,及旋转编码器操作、跑马灯显示等多项功能。☆17Oct 10, 2025Updated 10 months ago
- stm32 use uart iap, protocol is ymodem☆15Dec 4, 2020Updated 5 years ago
- ☆24Mar 25, 2026Updated 4 months ago
- DS3231 Library for STM32☆15May 11, 2019Updated 7 years ago
- EC20量产☆12Aug 29, 2019Updated 6 years ago
- HJ212-2017协议C语言实现,支持协议组包☆12Apr 13, 2023Updated 3 years ago
- Wordpress hosting with auto-scaling - Free Trial Offer • AdFully Managed hosting for WordPress and WooCommerce businesses that need reliable, auto-scalable performance. Cloudways SafeUpdates now available.
- 对于嵌入式应用而言,尤其是对于没有操作系统,裸机运行的嵌入式应用,迫切的需要一种高效快捷的调试手段进行嵌入式应用的开发。letter shell就是这样一个可以嵌入在程序中的shell,主要面向嵌入式设备,以C语言函数为运行单位,可以通过命令行调用,运行程序中的函数。1. …☆21Jan 9, 2021Updated 5 years ago
- DHT11 | Digital temperature and humidity sensor | Single bus☆10Jul 2, 2024Updated 2 years ago
- Real-Time PID GUI for STM32 DC Drive☆16Oct 31, 2025Updated 9 months ago
- ringbuffer(环形缓冲区)可以说是嵌入式应用非常常用的数据缓存设计了,LwRB 是国外开发者 MaJerle 维护实现的轻量级 ringbuffer,是一个为嵌入式系统特殊优化设计的 FIFO。1. 纯ANSI C99实现, 数据类型兼容于size_t 2. 与具体…☆26Jan 9, 2021Updated 5 years ago
- 基于STM32的RFID读卡器程序☆14Jan 13, 2019Updated 7 years ago
- 基础按键处理库,实现了一般按键的单点、连点、长按检测。可进行多按键的封装, 采用回调的方式与主程序通讯。☆70Jul 13, 2023Updated 3 years ago
- A project on reading the voltage and current form solar panel using the STM32 microcontroller. Also includes additional sensors like Temp…☆18Nov 20, 2022Updated 3 years ago
- This library is designed for Dual Motor Field-Orientied Control of PMSM/BLDC based on STM32, this is part of my undergraduate's individua…☆29Jun 30, 2023Updated 3 years ago
- 无感FOC项目,采用EKF观测器或非线性磁链观测器(Nonlinear Flux Observer)或滑模观测器(SMO),MCU采用STM32G474RET6,板子使用ST的X-NUCLEO-IHM07M1评估板,项目为Clion的CMAKE项目,可以使用Clion或VS…☆32Jul 29, 2026Updated last week
- Wordpress hosting with auto-scaling - Free Trial Offer • AdFully Managed hosting for WordPress and WooCommerce businesses that need reliable, auto-scalable performance. Cloudways SafeUpdates now available.
- Simple Life,Simple work,Simple happy.☆10May 28, 2019Updated 7 years ago
- It's a simple demo project for complex-vector current regulator for PMSM, and implements in the platform of TI's TMS320F28379D.☆23Jun 6, 2021Updated 5 years ago
- 嵌入式STM32按键功能库☆22Dec 14, 2020Updated 5 years ago
- 在嵌入式软件开发当中,常常第一步就是设计整个系统的架构。有基于OS的,也有裸机的。我们先拿裸机说事儿,我想很多人在做单片机的裸机开发(甚至基于OS)时脑海里根本没有设计架构的想法,从来都是while(1)循环到底,能写点状态机已经算是基础扎实的人物了。那么问题来了,whil…☆13Nov 25, 2019Updated 6 years ago
- OSAL free operating system abstraction for embedded systems. Supports pthreads, freertos, chibios, coocox, bertos and more... RTOS☆14Dec 27, 2013Updated 12 years ago
- 电力线载波智能家居控制系统☆15Apr 16, 2018Updated 8 years ago
- TLE5012B-Magnetic-Angle-Sensor For STM32F103RCTx☆27Aug 7, 2021Updated 5 years ago
- Porting the SQLite database to STM32 devices.☆30Jul 13, 2023Updated 3 years ago
- 4G模块开发☆11Aug 16, 2019Updated 6 years ago
- Deploy to Railway using AI coding agents - Free Credits Offer • AdUse Claude Code, Codex, OpenCode, and more. Autonomous software development now has the infrastructure to match with Railway.
- C语言实现的轻量级神经网络库,在嵌入式设备上无缝部署预训练的神经网络☆45Dec 7, 2018Updated 7 years ago
- FOC Driver based on stm32☆28Apr 21, 2023Updated 3 years ago
- A few simple example projects demonstrating how to use some core features of STM32 UART peripherals.☆15Jul 24, 2022Updated 4 years ago
- Simulink models of power electronics and electric motor drive circuits☆16Feb 5, 2018Updated 8 years ago
- 基于STM32的DCM模式下的BUCK变换器设计☆23Dec 19, 2018Updated 7 years ago
- 用于串口通信或消息的环形队列驱动☆14Sep 12, 2019Updated 6 years ago
- 这是一个个人工作中用到的一些 STM32 MCU 相关的功能配置与使用的示例集合。☆31Apr 11, 2024Updated 2 years ago