找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1646|回复: 2
收起左侧

STC12C5A60S2单片机怎么检测到断电?

[复制链接]
ID:575533 发表于 2019-7-24 14:51 | 显示全部楼层 |阅读模式
STC12C5A60S2  怎么检测到断电  马上保存
  
void lvdint() interrupt 6           //(location at 0033H)
{
}
我的中断操作为什么不停生效 PCON & 0x20也一直是true
回复

使用道具 举报

ID:575533 发表于 2019-7-24 15:20 | 显示全部楼层
或者有什么断电保存的方法  提供一下也行
回复

使用道具 举报

ID:155507 发表于 2019-7-24 17:04 | 显示全部楼层
你这个P4.6口有接吗?

STC12C5A60S2-LVD.jpg


我给你来个程序试试

  1. /*------------------------------------------------------------------*/
  2. /* --- STC MCU Limited ---------------------------------------------*/
  3. /* --- STC12C5Axx Series MCU Power-Down wakeup by LVD(P4.6) Demo ---*/
  4. /* --- Mobile: (86)13922805190 -------------------------------------*/
  5. /* --- Fax: 86-0513-55012956,55012947,55012969 ---------------------*/
  6. /* --- Tel: 86-0513-55012928,55012929,55012966----------------------*/
  7. /* If you want to use the program or the program referenced in the  */
  8. /* article, please specify in which data and procedures from STC    */
  9. /*------------------------------------------------------------------*/

  10. #include "reg51.h"
  11. #include "intrins.h"

  12. sfr WAKE_CLKO = 0x8f;
  13. sfr P4SW = 0xbb;

  14. sbit ELVD = IE^6;

  15. //External interrupt0 service routine
  16. void lvdint() interrupt 6           //(location at 0033H)
  17. {
  18.     PCON &= 0xdf;                   //clear LVD flag
  19. }

  20. void main()
  21. {
  22.     P4SW &= 0xbf;                   //Set P4.6 as LVD function pin
  23.     WAKE_CLKO = 0x08;               //enable LVD signal wakeup MCU from power-down mode
  24.     ELVD = 1;                       //enable LVD interrupt
  25.     EA = 1;                         //open global interrupt switch

  26.     while (1)
  27.     {
  28.         while (PCON & 0x20)
  29.         {
  30.             PCON &= 0xdf;               //clear LVD flag
  31.             _nop_();
  32.             _nop_();
  33.             _nop_();
  34.             _nop_();
  35.         }
  36.         _nop_();
  37.         _nop_();
  38.         PCON = 0x02;                 //MCU power down
  39.         _nop_();
  40.         _nop_();
  41.         P1++;
  42.     }
  43. }

复制代码




回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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