找回密码
 立即注册

QQ登录

只需一步,快速开始

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

STM8读取Flash_eeprom程序

[复制链接]
跳转到指定楼层
楼主
ID:301293 发表于 2018-5-29 10:03 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
STM8读取Flash_eeprom单片机源程序如下:
  1. /******************** (C) COPYRIGHT  风驰iCreate嵌入式开发工作室 ********************
  2. * 文件名  :main.c
  3. * 描述    :Flash_eeprom读写实验   
  4. * 实验平台:iCreate STM8开发板
  5. * 库版本  :V2.0.0
  6. * 作者    :ling_guansheng
  7. **********************************************************************************/

  8. /* Includes ------------------------------------------------------------------*/
  9. /* Includes ------------------------------------------------------------------*/
  10. #include "stm8s.h"
  11. #include "stm8s_clk.h"
  12. #include "intrinsics.h"
  13. #include "stm8s_uart1.h"
  14. #include "uart.h"
  15. #include "flash_eeprom.h"

  16. void Delay(u16 nCount);


  17. /* Private defines -----------------------------------------------------------*/
  18. /* Private function prototypes -----------------------------------------------*/
  19. /* Private functions ---------------------------------------------------------*/

  20. int main(void)
  21. {

  22.   /* Infinite loop */
  23.   
  24.   /*设置内部时钟16M为主时钟*/

  25.     Flash_eeprom_readwrite_Init();
  26.    /*!<Set High speed internal clock  */
  27.     CLK_HSIPrescalerConfig(CLK_PRESCALER_HSIDIV1);
  28.     Uart_Init();
  29.     Flash_eeprom_readwrite_Test();
  30.     Flash_eeprom_Erase_Test();
  31.    
  32.    __enable_interrupt();

  33.    while (1);
  34. }

  35. void Delay(u16 nCount)
  36. {
  37.   /* Decrement nCount value */
  38.   while (nCount != 0)
  39.   {
  40.     nCount--;
  41.   }
  42. }



  43. #ifdef USE_FULL_ASSERT

  44. /**
  45.   * @brief  Reports the name of the source file and the source line number
  46.   *   where the assert_param error has occurred.
  47.   * @param file: pointer to the source file name
  48.   * @param line: assert_param error line source number
  49.   * @retval : None
  50.   */
  51. void assert_failed(u8* file, u32 line)
  52. {
  53.   /* User can add his own implementation to report the file name and line number,
  54. ……………………

  55. …………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码

所有资料51hei提供下载:
STM8Flash_eeprom.rar (246.27 KB, 下载次数: 41)


评分

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

查看全部评分

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

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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