<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title> - AVR单片机</title>
    <link>http://www.51hei.com/bbs/mcu-avr-1.html</link>
    <description>Latest 20 threads of AVR单片机</description>
    <copyright>Copyright(C) </copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 15 Apr 2026 02:37:10 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.51hei.com/bbs/static/image/common/logo_88_31.gif</url>
      <title></title>
      <link>http://www.51hei.com/bbs/</link>
    </image>
    <item>
      <title>演示“位翻转程序”的执行过程</title>
      <link>http://www.51hei.com/bbs/dpj-241411-1.html</link>
      <description><![CDATA[BASCOM-AVR  mcs.lib的_FLIPBYTE代码

asm
;翻转寄存器R24中的位序
;1001_0000 变为 0000_1001
[_FLIPBYTE]
_FLIPBYTE: 
 push r16           ; 保存寄存器
 push r17 
 ldi r16,8          ; 位数计数
_FLIPBYTE2: 
 rol r24            ; 通过进位循环 ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Thu, 23 Oct 2025 03:18:36 +0000</pubDate>
    </item>
    <item>
      <title>c语言23lc1024测试程序</title>
      <link>http://www.51hei.com/bbs/dpj-241298-1.html</link>
      <description><![CDATA[]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Tue, 07 Oct 2025 14:02:31 +0000</pubDate>
    </item>
    <item>
      <title>23LC1024 SRAM 综合测试（BASCOM-AVR版）</title>
      <link>http://www.51hei.com/bbs/dpj-241292-1.html</link>
      <description><![CDATA[程序：
rem Main.bas file generated by New Project wizard
rem
rem Created:   周日 10月 5 2025
rem Processor: ATmega16
rem Compiler:  BASCOM-AVR

rem 23LC1024 SRAM 综合测试（BASCOM-AVR版）

$regfile = \&quot;m16def.dat\&quot;
$crystal = 8000000
$hws ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Tue, 07 Oct 2025 03:03:33 +0000</pubDate>
    </item>
    <item>
      <title>3x3矩阵的加法、乘法运算（运用了2维数组）</title>
      <link>http://www.51hei.com/bbs/dpj-241237-1.html</link>
      <description><![CDATA[\'====================================================
\' 程序：3x3矩阵运算测试版
\' 功能：实现两个3x3矩阵的加法、乘法运算并显示结果
\'本程序由deekseep生成~~~~
\'====================================================

\' 单片机配置文件
$regfile = \&quot;m16 ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Thu, 25 Sep 2025 08:29:31 +0000</pubDate>
    </item>
    <item>
      <title>插入排序算法</title>
      <link>http://www.51hei.com/bbs/dpj-240821-1.html</link>
      <description><![CDATA[\'------------------------------------------------------------------------
\' 这个程序演示了插入排序算法
\' 我们可以实现从低到高排序
\' 也可以实现从高到低排序
\' 该算法可以对任何数值型数组进行排序（不支持字符串）
\'------------------------------------ ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Tue, 05 Aug 2025 06:29:46 +0000</pubDate>
    </item>
    <item>
      <title>DeepSeek编程~香香香</title>
      <link>http://www.51hei.com/bbs/dpj-238985-1.html</link>
      <description><![CDATA[将你的想法和要求甩给DeepSeek它就会给出代码，仿真后如有错误将错误信息反馈它会修改程序，直至仿真通过。
下面是向DeepSeek提出的要求：

用AVR汇编语言（AVRASM）编写程序采用前进3步退2步方式运行正向阶段--向A点进发电机正转3秒-停0.5秒-反转2秒，净进1秒距离； ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Mon, 03 Feb 2025 15:51:53 +0000</pubDate>
    </item>
    <item>
      <title>Bascom的迷你矩阵代数代码教程</title>
      <link>http://www.51hei.com/bbs/dpj-237990-1.html</link>
      <description><![CDATA[\'                                             Bascom的迷你矩阵代数代码           
\'                                              加法、减法、乘法、倒置              
\'                                              (Natalius Kiedro，2010年3月）       ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Tue, 29 Oct 2024 04:40:25 +0000</pubDate>
    </item>
    <item>
      <title>ds2408—一根线的4x4键盘</title>
      <link>http://www.51hei.com/bbs/dpj-237965-1.html</link>
      <description><![CDATA[$regfile = \&quot;m8def.dat\&quot; \' 定义一个配置文件名称  
$crystal = 8000000 \' 定义晶振频率为8MHz  
$BAUD = 9600 \' 定义波特率为9600  

Config 1wire = Portc.5 \' 配置1-Wire通信在Portc的第5脚上  

\' 定义变量  
Dim Row(4) As Byte \' 定义一个长度为4的字节 ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Sat, 26 Oct 2024 15:29:39 +0000</pubDate>
    </item>
    <item>
      <title>AVR单片机热敏电阻加热器仿真</title>
      <link>http://www.51hei.com/bbs/dpj-234380-1.html</link>
      <description><![CDATA[纸上谈兵的程序如下：

$regfile = \&quot;m8def.dat\&quot;
$crystal = 8000000
\'$baud = 9600
\'*******************端口B用于编码器及开关*********************
ddrb=&amp;B00000000
Portb = &amp;B11111111                                               \' 激活上拉寄存器 ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Mon, 12 Feb 2024 04:00:09 +0000</pubDate>
    </item>
    <item>
      <title>m8单片机串口通讯程序</title>
      <link>http://www.51hei.com/bbs/dpj-233953-1.html</link>
      <description><![CDATA[个人认为，AVR系列的串口使用还是比较容易出错，如果采用传统的查询方式太耗系统时间，而且现在关于AVR的教材大多给你的是查询发送方式，中断接收方式。
本例子是采用中断接收，中断发送方式。希望对大家有所帮助。

//ICC-AVR 
// Target : M8
// Crystal: 4.0000 ...]]></description>
      <category>AVR单片机</category>
      <author>myfriend</author>
      <pubDate>Thu, 11 Jan 2024 13:08:09 +0000</pubDate>
    </item>
    <item>
      <title>CodeVisonAVR 3.4 一款高效AVR开发工具</title>
      <link>http://www.51hei.com/bbs/dpj-233737-1.html</link>
      <description><![CDATA[一款高效AVR开发工具，鼠标点击生成mcu配置参数，集成很多常用器件LCD驱动,鼠标选一下直接使用，非常非常高效快速，分享给大家

下载链接:已删除

补上阿里云分享链接
CodeVisionAVR 3.40 Advanced.rar 
www.alipan.com/s/fLJfY5yjLK8
点击链接保存，或者复制本 ...]]></description>
      <category>AVR单片机</category>
      <author>zzy9903</author>
      <pubDate>Sun, 31 Dec 2023 17:21:45 +0000</pubDate>
    </item>
    <item>
      <title>Proteus 模拟呼吸灯</title>
      <link>http://www.51hei.com/bbs/dpj-233594-1.html</link>
      <description><![CDATA[]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Sat, 23 Dec 2023 11:24:37 +0000</pubDate>
    </item>
    <item>
      <title>atmega32 rm kit</title>
      <link>http://www.51hei.com/bbs/dpj-233525-1.html</link>
      <description><![CDATA[]]></description>
      <category>AVR单片机</category>
      <author>arvss</author>
      <pubDate>Tue, 19 Dec 2023 19:18:45 +0000</pubDate>
    </item>
    <item>
      <title>avr单片机智能寻迹小车程序PCB资料</title>
      <link>http://www.51hei.com/bbs/dpj-233435-1.html</link>
      <description><![CDATA[智能寻迹小车资料


单片机源程序如下:


PCB文件下载(有错误 仅供参考 求大神指导):]]></description>
      <category>AVR单片机</category>
      <author>kevinlam</author>
      <pubDate>Thu, 14 Dec 2023 15:11:41 +0000</pubDate>
    </item>
    <item>
      <title>bascom avr单片机摩尔斯电码自动发送仿真程序</title>
      <link>http://www.51hei.com/bbs/dpj-232882-1.html</link>
      <description><![CDATA[rem Main.bas file generated by New Project wizard
rem
rem Created:   周六 11月 18 2023   taotie
rem Processor: ATmega8
rem Compiler:  BASCOM-AVR
rem Software name:  摩尔斯电码自动发送仿真
rem Write your code here

$regfile = \&quot;m8def.dat\&quot;
 ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Mon, 20 Nov 2023 14:25:53 +0000</pubDate>
    </item>
    <item>
      <title>bascomavr_i2c  ds1621温度传感器仿真</title>
      <link>http://www.51hei.com/bbs/dpj-232444-1.html</link>
      <description><![CDATA[ds1621温度传感器仿真程序：
rem Main.bas file generated by New Project wizard
rem
rem Created:   周三 10月 25 2023
rem Processor: ATmega88
rem Compiler:  BASCOM-AVR
rem Write your code here

$regfile = \&quot;m88def.dat\&quot;               
$crystal ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Fri, 27 Oct 2023 14:57:01 +0000</pubDate>
    </item>
    <item>
      <title>BASCOM AVR    ADS1110 _16-BIT模数转换器仿真</title>
      <link>http://www.51hei.com/bbs/dpj-232022-1.html</link>
      <description><![CDATA[$regfile = \&quot;m8def.dat\&quot;
$crystal = 8000000
\'$baud = 19200



\'Config Clockdiv = 1                                        \' 确保芯片以8 MHz运行
Config Scl = Portc.5                                        \' 使用i2c引脚
Config Sda = Portc.4
Co ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Sun, 08 Oct 2023 15:45:01 +0000</pubDate>
    </item>
    <item>
      <title>AVR128单片机 自动售水机设计</title>
      <link>http://www.51hei.com/bbs/dpj-231470-1.html</link>
      <description><![CDATA[一、系统方案设计使用两个按键分别为S1和S2及一个发光二极管LED。S1为出水控制按键，当S1按下，表示售水机持续出水，继电器（库元件relay）接通，指示灯LED亮。S2为停水控制键，当S2按下，继电器断开，停止出水，指示灯LED熄灭。用两片8LED数码管（库中的器件名为7SEG-M ...]]></description>
      <category>AVR单片机</category>
      <author>bbxyliyang</author>
      <pubDate>Mon, 04 Sep 2023 07:12:20 +0000</pubDate>
    </item>
    <item>
      <title>使用ATmega8单片机时钟8MHz控制舵机</title>
      <link>http://www.51hei.com/bbs/dpj-231416-1.html</link>
      <description><![CDATA[rem Main.bas file generated by New Project wizard
rem
rem Created:   周三 8月 30 2023
rem Processor: ATmega8
rem Compiler:  BASCOM-AVR

rem Write your code here

\'　使用8MHz的ATmega8时钟来控制伺服电机。
\'　　　　 信号周期=50Hz(20mS)
\'       ...]]></description>
      <category>AVR单片机</category>
      <author>taotie</author>
      <pubDate>Thu, 31 Aug 2023 15:09:00 +0000</pubDate>
    </item>
    <item>
      <title>AVR446: Linear speed control of stepper motor</title>
      <link>http://www.51hei.com/bbs/dpj-227824-1.html</link>
      <description><![CDATA[详细介绍了步进电机直线加速的算法分析To rotate the stepper motor at a constant speed, pulses must be generated at a
steady rate, shown in Figure 2-4.



上述的详细推导过程见附件的附录]]></description>
      <category>AVR单片机</category>
      <author>STM32Study1</author>
      <pubDate>Fri, 31 Mar 2023 02:34:36 +0000</pubDate>
    </item>
  </channel>
</rss>