<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>泰骏兴电子 - STM32</title>
    <link>https://www.tjxdz.cn/forum.php?mod=forumdisplay&amp;fid=39</link>
    <description>Latest 20 threads of STM32</description>
    <copyright>Copyright(C) 泰骏兴电子</copyright>
    <generator>Discuz! Board by Discuz! Team</generator>
    <lastBuildDate>Sat, 11 Jul 2026 20:15:05 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.tjxdz.cn/static/image/common/logo_88_31.gif</url>
      <title>泰骏兴电子</title>
      <link>https://www.tjxdz.cn/</link>
    </image>
    <item>
      <title>F103&amp;F405开发板综合代码</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=358</link>
      <description><![CDATA[此代码上电后进入开机页面


开机页面有进行转圈，到达一定时间进入主页面

主页面有图片展示功能，USB连接功能，本机ID二维码展示，等功能，使用按键可以进行切换

图片展示页面功能为循环播放保存在产品中的图片文件，图片文件需要使用LVGL转换成bin文件保存到(根目录 ...]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Fri, 05 Jun 2026 09:29:06 +0000</pubDate>
    </item>
    <item>
      <title>STM32F103RE制作的PID恒温控制器</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=357</link>
      <description><![CDATA[快手视频：PID恒温控制器


硬件采用核心板加控制板实现：主芯片为STM32F103RE，温度传感器使用NTC10K电阻
程序架构为：RTOS+LVGL界面+TJX_Button按键扫描程序，RTOS一个任务进行采集NTC，另一个任务负责LVGL界面刷新加一个按键扫描任务，3个任务



 ...]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Sat, 30 May 2026 14:05:35 +0000</pubDate>
    </item>
    <item>
      <title>非常方便的非阻塞独立按键识别程序支持单击长按双击以及多击</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=356</link>
      <description><![CDATA[以上部分绑定按键，返回状态则是按键按下与非按下状态

你可以重新定义这些函数。

你唯一需要做的就是在一个定时器中循环调用
函数，其他的你都可以不用你管了，接下来就是怎么识别按键，实际上很简单
通过一个函数即可
我们通过这个函数接口就可以获取到按键是什么状 ...]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Sat, 30 May 2026 08:07:12 +0000</pubDate>
    </item>
    <item>
      <title>温湿度转换成体感温度代码</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=353</link>
      <description><![CDATA[[mw_shl_code=applescript,true].c文件
#include \&quot;heat_index.h\&quot;
#include 

float Get_Tg_value(float Ta, float RH)
{
    double p1 = 0.151977 * sqrt(RH + 8.313659);
    double t1 = Ta * atan(p1);
    double t2 = atan(Ta + RH);
    double t3 = atan(RH]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Fri, 22 May 2026 05:38:33 +0000</pubDate>
    </item>
    <item>
      <title>IAP 架构下引导程序缺陷分析与代码优化整改</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=351</link>
      <description><![CDATA[一、功能说明

[*]地址：0x08000000
[*]上电自动运行
[*]功能：初始化按键、串口 → 判断是否升级 → 不升级则跳转到 APP1（0x08010000）

二、原代码问题

[*]跳转前未关闭中断
[*]未关闭 SysTick（系统定时器）
[*]未清除中断标志
[*]会导致 APP1 运行异常、关机异常 ...]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Fri, 24 Apr 2026 09:55:30 +0000</pubDate>
    </item>
    <item>
      <title>STM32 F103 IAP 分区 关机残留电压导致异常上电问题总结</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=350</link>
      <description><![CDATA[STM32 F103 IAP 分区 关机残留电压导致异常上电问题总结
基于你整套硬件架构、代码现状、故障现象，整理一份精简实用技术文案，可用于笔记、归档、项目复盘：

[hr]
故障现象
设备采用 APP0 (0x08000000 引导区) + APP1 (0x08010000 主程序) 双 IAP 分区架构。
整机供电 ...]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Fri, 24 Apr 2026 09:50:54 +0000</pubDate>
    </item>
    <item>
      <title>STM32F103获取CPU温度</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=225</link>
      <description><![CDATA[STM32F1的ADC通道



[mw_shl_code=c,true]//初始化ADC
void Adc_CPU_Temp_Init(void)  //ADC通道初始化
{
]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Thu, 17 Jul 2025 02:52:07 +0000</pubDate>
    </item>
    <item>
      <title>NTC温度测温程序B3950</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=224</link>
      <description><![CDATA[[mw_shl_code=applescript,true]


#define NTC_V_MAX ]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
<enclosure url="/forum/10000       // 10K 电阻值 (10KΩ)
#define NTC_R_MIN " length="10000         // 25°C 时的电阻值 (10KΩ)
#define NTC_B_VALUE 3950            // B3950 的 B 值 ..." type="image/jpeg" />      <pubDate>Wed, 16 Jul 2025 03:53:41 +0000</pubDate>
    </item>
    <item>
      <title>STM32F103芯片超频测试程序</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=223</link>
      <description><![CDATA[[mw_shl_code=applescript,true]void RCC_HSE_Init(uint32_t RCC_PLLMul_x)//范围2-16
{
]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Mon, 14 Jul 2025 09:19:46 +0000</pubDate>
    </item>
    <item>
      <title>STM32F1使用PWM+DMA驱动WS2812</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=221</link>
      <description><![CDATA[使用定时器3的PWM驱动
使用WS2812_send函数可以直接驱动LED]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Thu, 22 May 2025 00:54:53 +0000</pubDate>
    </item>
    <item>
      <title>Keil v5 MDK 编译UTF8字符串报错的解决办法</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=213</link>
      <description><![CDATA[今天在编写一个LVGL项目的时候，突然遇到一个莫名其妙的问题，为什么莫名其妙呢？



LVGL要想显示中文，那就得吧ANSI格式改成UTF-8格式，问题就在这里，改成UTF-8格式后，MDK就抽风一样



看看下面报错的地方，不知道有没有人能发现什么问题，
发现不了就对了，我也 ...]]></description>
      <category>STM32</category>
      <author>bcwx_admin</author>
      <pubDate>Thu, 13 Jun 2024 06:34:40 +0000</pubDate>
    </item>
    <item>
      <title>一个拒绝死等的按键程序,支持短按，长按，多个按键同时按下</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=210</link>
      <description><![CDATA[通常我们在写按键程序的时候例如下面的例子：

都是这样进行识别按键的，但是这样的程序就会出现一个问题，就是按键在按下的时候程序会死在while(KEY1==0);//等待按键松开程序中，这样的话就造成一个问题，程序的执行效率很低很低
有什么什么方法可以解决一下呢？
当然 ...]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Mon, 29 Jan 2024 03:03:42 +0000</pubDate>
    </item>
    <item>
      <title>STM32F407驱动4寸的GT911电容触摸程序</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=203</link>
      <description><![CDATA[下载查看代码，
请一定注意IIC第地址，请一定注意IIC第地址，请一定注意IIC第地址]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Tue, 31 Oct 2023 08:12:16 +0000</pubDate>
    </item>
    <item>
      <title>STM32的MAP文件解析</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=195</link>
      <description><![CDATA[MAP文件的概念和作用：

MAP 文件是有MDK编译代码后产生的集程序，数据IO及空间的一种映射列表文件，简单的说就是包括了各种.c文件，函数，符号等的地址，大小，引用关系等信息的文件

MAP文件组成

  ...]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Thu, 07 Sep 2023 13:49:12 +0000</pubDate>
    </item>
    <item>
      <title>STM32导出PDF文件</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=196</link>
      <description><![CDATA[]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Wed, 06 Sep 2023 07:16:14 +0000</pubDate>
    </item>
    <item>
      <title>STM32F1驱动W25Qxx程序代码</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=193</link>
      <description><![CDATA[本程序是使用STM32F1驱动W25Qxx系列FLASH存储的驱动代码：


注意配置一下此函数






.H文件
.C文件]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Tue, 22 Aug 2023 06:51:19 +0000</pubDate>
    </item>
    <item>
      <title>PID-电源类-STM32F334数字电源开发板 51单片机数字电源 同步整流BUCKBOOST 双向DC-DC</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=187</link>
      <description><![CDATA[]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Wed, 26 Jul 2023 01:41:14 +0000</pubDate>
    </item>
    <item>
      <title>PID-电机类-STM32驱动库分享，包括STD库和HAL库</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=186</link>
      <description><![CDATA[PID-电机类-STM32驱动库分享，包括STD库和HAL库








文件内容]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Wed, 26 Jul 2023 01:26:17 +0000</pubDate>
    </item>
    <item>
      <title>TM1681数码管驱动IC程序</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=173</link>
      <description><![CDATA[TM1681具体信息请看TM1681详情

程序驱动的是共阳极0.8寸数码管，程序测试是没有什么问题的


.c文件

.h文件]]></description>
      <category>STM32</category>
      <author>泰骏兴电子</author>
      <pubDate>Tue, 13 Jun 2023 02:07:17 +0000</pubDate>
    </item>
    <item>
      <title>STM32F103的串口2程序</title>
      <link>https://www.tjxdz.cn/forum.php?mod=viewthread&amp;tid=158</link>
      <description><![CDATA[#define usart2_MAX 100
extern uchar usart2_data[usart2_MAX];
extern uchar usart2_rx;
void usart2_init(u32 Baud_rate);
void USART2_Sned_Char(uchar pchar);//串口发出一个16进制数
void empty_usart2_data(uchar q);//清除



uchar usart2_data[usart2_MAX];
u ...]]></description>
      <category>STM32</category>
      <author>bcwx_admin</author>
      <pubDate>Thu, 11 May 2023 07:57:04 +0000</pubDate>
    </item>
  </channel>
</rss>