找回密码
 立即注册

QQ登录

只需一步,快速开始

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

STM8用模拟IIC读写DS1307源程序 实测有效

[复制链接]
跳转到指定楼层
楼主
ID:125378 发表于 2019-8-6 09:02 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
一起探讨学习

单片机源程序如下:

  1. #include "bsp.h"
  2. #include "stdio.h"
  3. #include "string.h"
  4. #include "ds1307.h"
  5. #include "soft_iic.h"
  6. #define led_1()                   GPIO_WriteHigh(GPIOD, GPIO_PIN_0)
  7. #define led_0()                   GPIO_WriteLow(GPIOD, GPIO_PIN_0)


  8. u8 sendData[] = "iic_test";
  9. u8 revData[10];

  10. u8 DeviceData[10];   


  11. void main(void)
  12. {
  13.         uint8_t rev_dat=0;
  14.   uint8_t i=0;
  15.         uint8_t t_data=0x11;
  16.         uint8_t t_data1=0x00;
  17.         
  18.         uint8_t temp;
  19.   BSP_Initializes();
  20.   soft_IIC_init();
  21.   IIC_Init();

  22.   led_0();
  23.   timer_delay_s(1);
  24.   led_1();
  25.         
  26.         //IIC_Write(0xD0 , 0x07 , &t_data , 1);         //用片内IIC写数据
  27.         //IIC_Write(0xD0 , 0x03 , &t_data1 , 1);        
  28.         
  29.         iic_write_ds1307(0xD0,0x07,0x13);//control SQ_pin  ouuput square wave address 0x07
  30.         //        0x10 <--> 1Hz        0x11 <--> 4096Hz 0x12 <--> 8192Hz 0x13 <--> 32.768kHz        
  31.         
  32.         //iic_write_ds1307(0xD0,0x02,0xd);
  33.         rev_dat = iic_read_ds1307(0xD0,0x01);  //read mimutes
  34.   while(1)
  35.   {
  36.         
  37.     if(rev_dat==35)
  38.     {
  39.       led_0();
  40.       timer_delay_s(1);
  41.       led_1();
  42.                         timer_delay_s(1);               
  43.     }
  44.                
  45.   }
  46. }


  47. #ifdef USE_FULL_ASSERT                           

  48. void assert_failed(u8* file, u32 line)
  49. {
  50.   /* User can add his own implementation to report the file name and line number,
  51.      ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */

  52.   /* Infinite loop */
  53.   while (1)
  54.   {
  55.   }
  56. }
  57. #endif
复制代码

所有资料51hei提供下载:
GPIO_IIC -1.7z (3.83 MB, 下载次数: 64)


评分

参与人数 1黑币 +50 收起 理由
admin + 50 共享资料的黑币奖励!

查看全部评分

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

使用道具 举报

沙发
ID:321981 发表于 2020-3-7 21:37 | 只看该作者
垃圾,这个是硬件的
回复

使用道具 举报

板凳
ID:1009545 发表于 2022-3-10 22:15 | 只看该作者
可以用
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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