自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

injre! injre~

嵌入式码农

  • 博客(156)
  • 资源 (10)
  • 收藏
  • 关注

原创 STM32通过rt_hw_hard_fault_exception中的LR寄存器追溯程序问题​

程序运行导致rt_hw_hard_fault_exception如图显示错误相关代码。

2025-05-30 18:35:27 425

原创 结合代码理解SPI的4种模式

CPOL: 决定时钟空闲状态(0=低电平,1=高电平)CPHA: 决定采样边沿(0=第一个边沿,1=第二个边沿)

2025-05-21 05:45:26 307

原创 stm32 阻塞式延时 与 非阻塞式延时

示例阻塞场景实现1 阻塞式延时2 非阻塞式延时。

2025-04-28 11:31:30 339

原创 KEIL工程仿真异常,不能打断点

试试复制原来的工程文件替代。可能是工程文件除了问题。

2025-04-07 10:40:48 379

原创 嵌入式几种低功耗关键策略与实现

低功耗关键策略与实现1. ​基于空闲检测的休眠 (Idle Sleep)2. ​Tickless 模式3. ​事件驱动架构 (Event-Driven)

2025-03-26 13:51:20 176

原创 CodeBrick笔记,一种支持低功耗的嵌入式操作系统

【代码】CodeBrick笔记。

2025-03-24 22:24:17 711

原创 qt程序打包成一个文件

Qt开发——Qt项目打包、整合以及生成安装包保姆级教程(Windows系统)

2025-03-21 17:46:57 302

原创 state与status

人话state:过程状态status:结果状态。

2025-03-21 14:53:55 905

原创 STM32寄存器或变量意外修改,定位方案

寄存器或变量被意外修改时

2025-03-19 16:34:24 410

原创 git gui 笔记

GIT gui笔记

2025-01-25 13:10:17 459

原创 RadioButton CheckBox区别

CheckBox RadioButton

2024-12-19 14:20:52 247

原创 地址运算&地址

地址运算&地址

2024-12-12 15:47:26 215

原创 QTreeWidget基本操作

基本添加树操作

2024-12-11 12:12:39 259

原创 QT使用boost.pfr结构体历遍,树显示

历遍函数:boost::pfr::for_each_field(obj, [&](const auto& field, std::size_t idx)可惜的是,需要手动添加变量名。

2024-12-10 17:20:32 513

原创 QT配置boost库

QT boost库下载、配置

2024-12-10 12:28:25 860

原创 QT 多级嵌套结构体,遍历成员--半自动。<模板+宏定义>QTreeWidget树结构显示

Qt的QTreeWidget来显示嵌套结构体的成员,并以树形结构展示。

2024-12-09 20:26:34 402

原创 QT 多级嵌套结构体并遍历其成员-模板和宏定义

多级结构体历遍-模板和宏定义

2024-12-09 20:11:04 541

原创 Qt C++ 显示多级结构体,包括结构体名、变量名和值

QTreeView 和 QStandardItemModel 来实现。

2024-12-09 17:13:43 468

原创 QT5.14 QML串口助手

QML QT5.14 串口助手

2024-12-03 17:08:07 490

原创 Qt-5.14.2 example

官方历程很丰富,modbus、串口、chart图表、3D、视频。

2024-12-02 10:58:56 954

原创 白话modbus功能码,与数据示例

白话modbus,与数据示例

2024-11-26 15:06:12 758

原创 keil .map介绍,文件结构说明

keil map文件介绍

2024-11-25 15:21:38 986

原创 stm32 指定变量存储地址

指定变量存储地址__attribute__((at(0x20000000)))

2024-11-22 20:01:34 906

原创 按键识别,单击+双击+长按

单击+双击+长按识别

2024-11-21 11:16:06 361

原创 STM32 UART的DMA与非DMA性能对比

低波特率发送数据发送数据比较占用CPU时间DMA在低波特率发送数据时,应该还是比较有作用的。

2024-11-20 19:10:41 562

原创 简单直观的电路仿真---Ciruitjs

Ciruitjs

2024-11-15 16:00:44 269

原创 QT Quick 3种默认布局 Scroll Stack Swipe

QT基础布局样式

2024-11-13 22:56:10 523

原创 QtQuick.Controls 控件介绍(都有哪些type)

Qt Quick Controls样式、示例

2024-11-13 20:38:45 984

原创 KEIL project item/targets

KEIL的new project targets作用

2024-11-08 11:54:31 675

原创 卡尔曼滤波-应用白话

卡尔曼滤波应用白话

2024-11-01 17:33:16 716

原创 模块化的状态机(状态机框架)

状态机框架

2024-10-29 10:18:32 710

原创 赋值效率--memset 与 for赋值

vs= 1:4。stm32平台for赋值 134us。

2024-10-14 15:21:20 285

原创 keil <Go To Definition> 多个函数

keil 多个函数

2024-10-14 10:05:14 279

原创 QT widgets 窗口缩放,自适应窗口大小进行布局

QT wigdets 窗口自适应缩放布局

2024-09-19 10:49:09 2236

原创 QT帮助文档

or。

2024-09-13 10:32:52 225

原创 QML与widget

QML灵活强大widget稳定、功能性

2024-09-11 16:53:12 688

原创 QT readyRead()函数,数据分包不完整解决办法

QT serialPort->readAll()数据接收不全,通过修改buf,接收时间,读取完整数据。

2024-09-08 19:33:09 691

原创 屏幕变参显示函数+类HTML网页元素标签的反色功能

常见的屏幕显示函数(固定参数)进化成类似printf的变参。类HTML元素标签 hello world:

2024-09-02 16:41:46 752

原创 KEIL微库MicroLIB与程序大小

MicroLIB微库优化空间24%

2024-08-21 15:02:32 588

原创 C语言int24转int32 .

int24转int32

2024-08-21 11:20:54 427

Qt-5.14.2 example

Qt-5.14.2官方例程

2024-12-02

RT-Thread 系统AT 组件

AT 组件是基于 RT-Thread 系统的 AT Server 和 AT Client 的实现,组件完成 AT 命令的发送、命令格式及参数判断、命令的响应、响应数据的接收、响应数据的解析、URC 数据处理等整个 AT 命令数据交互流程。

2024-08-09

AT指令处理框架,基于FreeRTOS,使用STM32进行开发

1. 在使用前将Hardware.c 与 ATCommand.h ATCommand.c中的函数进行配置。 2. 使用时注册一个任务运行AT指令处理调度器,使用ATCommandRegister()函数注册发送AT命令。当接收到正确的响应后,会将参数传递到用户的处理回调函数中。

2024-08-06

AT device 软件包是由 RT-Thread AT 组件针对不同 AT 设备的移植文件和示例代码组成

AT device 软件包是由 RT-Thread AT 组件针对不同 AT 设备的移植文件和示例代码组成,目前支持的 AT 设备有:ESP8266、ESP32、M26、MC20、RW007、MW31、SIM800C、W60X 、SIM76XX、A9/A9G、BC26 、AIR720、ME3616、M6315、BC28、EC200X、M5311、L610、ML305、ML307系列设备等,目前上述设备都完成对 `AT socket` 功能的移植,及设备通过 AT 命令实现标准 socket 编程接口,完成 socket 通讯的功能,具体功能介绍可参考 [《RT-Thread 编程指南》](https://www.rt-thread.org/document/site/programming-manual/at/at/)AT 命令章节 。

2024-08-06

freemodbus-由RT-Thread提供,版本REL-1-6-0

2013-10-17 (REL_1_6_0) Armink <armink.ztl@gmail.com> Notes: Added modbus master. 2010-05-06 (REL_1_5_0) Christian Walter <cwalter@embedded-solutions.at> Notes: Added support for Atmel AT91SAM3S (Cortex M3) for IAR. Detailed notes: - FEATURES (ATSAM3S) : Added new port. 2007-08-28 (REL_1_4_0) Christian Walter <wolti@sil.at>: Notes: Added support for HCS08. Fixed some small bugs in the documentation for the porting layer. Detailed notes: - FEATURES (HCS08) : Added new port. - BUGS

2024-07-31

libmodbus开源代码

libmodbus

2024-07-30

ANSI-ESTA_E1-11_2008R2018 DMX512-A.pdf

ANSI E1.11 - 2008 (R2018) is a reaffirmation of the 2008 edition. ANSI E1.11 describes a method of digital data transmission for control of lighting equipment and accessories, including dimmers, color-changers, and related equipment. It intended to provide for interoperability at communication and mechanical levels with controllers and controlled equipment made by different manufacturers. It is an update and expansion of the protocol developed by the United States Institute for Theatre Technology, Inc. and published as "DMX512/1990, Digital Data Transmission Standards for Dimmers and Controllers."

2019-07-05

5-华为云如何加速区块链应用快速落地.pdf

华为云区块链构建可信的数字社会 1.区块链技术和趋势洞察 2.区块链实践应用分享 3.华为云区块链特点和价值 4.华为云区块链构建实践

2019-07-17

华为重庆软件开发云运营一周年.pdf

华为(重庆)DevCloud创新中心成立 DevOps使企业更有竞争力(DevelopmentOperations)=开发团队与运营团队之间更具协作性、更高效的关系 DevCloud平台能力简介(Development Cloud)=软件开发云== 软开云 一站式华为云服务能力(AI/IoT/大数据/区块链……)

2019-07-17

基于ESP32,Arduino的蓝牙键盘示例

基于ESP32,Arduino的蓝牙键盘示例

2023-11-13

ANSI_E1-20&E1;-37-1&E1;-37-2_RDM.pdf

ANSI E1.20 - 2010, Entertainment Technology-RDM-Remote Device Management over USITT DMX512 Networks, describes a method of bi-directional communications over a USITT DMX512/1990 or ANSI E1.11 - 2004 data link between an entertainment lighting controller and one or more remotely controlled lighting devices. The protocol was written to work with the ANSI E1.11-2004 control standard, but will work equally well with the current 2009 version of E1.11. It allows discovery of devices on a DMX512/E1.11 network and the remote setting of DMX starting addresses, as well as status and fault reporting back to the control console. The 2010 edition corrects errors in the 2006 edition, and adds a new message to say that a previously reported problem has been cleared. The 2010 edition is bookmarked for easier use. The download includes ANSI E1.37-1 and E1.37-2 because they are particularly useful with E1.20.

2019-07-05

stm32f1x 例程 example

stm32f1x 例程 example

2022-10-05

DP83848 电路设计参考

Ti官网设计参考电路。AD格式,带3D模型。无版权,免费试用。

2019-08-09

2-华为云技术沙龙·5G MEC- V2.0.pdf

基于华为5G MEC开放平台构建边缘应用 5G改变社会,使能全行业数字化转型。 适应低延时,高带宽,高速移动业务

2019-07-17

rtthread_simulator_v0.1.0.7z

rtthread keil仿真工程 rtthread_simulator_v0.1.0

2019-09-24

蓝牙 官方协议 AVCTP BNEP IrDA MCAP

Protocol specifications define the protocols that govern communication among devices on Bluetooth wireless networks.

2020-11-09

空空如也

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

TA关注的人

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