找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 3160|回复: 2
打印 上一主题 下一主题
收起左侧

stm32f103rct6串口通讯源码

[复制链接]
跳转到指定楼层
楼主
ID:319065 发表于 2018-6-14 21:03 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
单片机源程序如下:
  1. #include "stm32f10x.h"
  2. #include "delay.h"
  3. #include "iwtdog.h"
  4. #include "led.h"
  5. #include "sys.h"
  6. #include "timer3.h"
  7. #include "usart1.h"
  8. #include "usart2.h"
  9. #include "usart3.h"



  10. uint16_t main_timer3_value = 100U;//100ms定时 该值必须比下面点亮熄灭时间小。
  11. //Led1 异常灯
  12. uint16_t main_led1_on_time = 200U;//LED1一个闪烁周期内的点亮时间
  13. uint16_t main_led1_off_time = 200U;//LED1一个闪烁周期内的熄灭时间
  14. uint8_t main_led1_cycle_count = 1U;//LED1一个周期内只闪烁一次
  15. //Led2 正常灯
  16. uint16_t main_led2_on_time = 200U;//LED2一个闪烁周期内的点亮时间
  17. uint16_t main_led2_off_time = 200U;//LED2一个闪烁周期内的熄灭时间
  18. uint8_t main_led2_cycle_count = 1U;//LED2一个周期内只闪烁一次

  19. int main(void)
  20. {
  21.         Timer3InitMs(main_timer3_value);
  22.         LedInit(main_timer3_value);
  23.         Usart1Init();
  24.         Usart2Init();
  25.         Usart3Init();
  26.         
  27.         IwtdogInit(7U,500U); //与分频数为128*4,重载值为500,溢出时间为16s        
  28.         
  29.         Interrupt_enable();
  30.         while(1)
  31.         {
  32.                 //喂狗
  33.                 IwtdogClear();
  34.                 //串口1处理
  35.                 Usart1AnalysisHandle();
  36.                 Usart2AnalysisHandle();
  37.                 if((Usart1CheckRxFlag() == 1U) && (Usart2CheckRxFlag() == 1U))//异常
  38.                 {
  39.                         Led_BlueOnFrq(main_led1_on_time,main_led1_off_time,main_led1_cycle_count);
  40.                 }
  41.                 else
  42.                 {
  43.                         Led_RedOnFrq(main_led2_on_time,main_led2_off_time,main_led2_cycle_count);
  44.                 }
  45.                
  46.                 //定时器
  47.                 if(Timer3FlagStatus() == 1U)
  48.                 {
  49.                         Timer3StatusFlagClear();
  50.                         Led_BlueTimeInt();
  51.                         Led_RedTimeInt();
  52.                 }
  53.         }        
  54.         return 0U;
  55. }
复制代码

所有资料51hei提供下载:
0_STM32F103RCT6_V0.2.rar (323.98 KB, 下载次数: 58)


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 顶 踩
回复

使用道具 举报

沙发
ID:138507 发表于 2018-6-30 16:11 | 只看该作者
学习,学习!
回复

使用道具 举报

板凳
ID:388109 发表于 2018-10-16 16:10 | 只看该作者
好,好资源
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表