找回密码
 立即注册

QQ登录

只需一步,快速开始

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

这个程序就是报DTSY.C(55): error C171: 'break': missing enclosing loop

[复制链接]
跳转到指定楼层
楼主
ID:1111118 发表于 2024-2-18 21:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include "reg52.h"
#include "MATH.h"
typedef unsigned int u16;       
typedef unsigned char u8;
typedef unsigned long u32;
typedef int uf16;       
typedef char uf8;
typedef long uf32;
sbit KEY1=P3^1;
sbit KEY2=P3^0;
sbit KEY3=P3^2;
sbit KEY4=P3^3;
sbit up=P2^0;
sbit down=P2^1;
#define KEY1_PRESS        1
#define KEY2_PRESS        2
#define KEY3_PRESS        3
#define KEY4_PRESS        4
#define KEY_UNPRESS        0
u8 current=0;
u8 call=0;
u8 key=0;
u8 Floordifference=0;       
void delay_10us(u32 ten_us)
{
        while(ten_us--);       
}
u8 key_scan(u8 mode)
{
        static u8 key=1;

        if(mode)key=1;
        if(key==1&&(KEY1==0||KEY2==0||KEY3==0||KEY4==0))
        {
                delay_10us(1000);
                key=0;
                if(KEY1==0)
                        return KEY1_PRESS;
                else if(KEY2==0)
                        return KEY2_PRESS;
                else if(KEY3==0)
                        return KEY3_PRESS;
                else if(KEY4==0)
                        return KEY4_PRESS;       
        }
        else if(KEY1==1&&KEY2==1&&KEY3==1&&KEY4==1)       
        {
                key=1;
                return KEY_UNPRESS;                               
        }
        return KEY_UNPRESS;               
}
void exit()
{
break;
}
void assignment()
{
         while(1)
        {       
                        key=key_scan(0);
                        if(key==KEY1_PRESS)
                        {
                                call=KEY1_PRESS;
                        }
                        else if(key==KEY2_PRESS)
                        {
                                call=KEY2_PRESS;
                        }
                        else if(key==KEY3_PRESS)
                        {
                                call=KEY3_PRESS;
                    }
                        else if(key==KEY4_PRESS)
                        {
                                call=KEY4_PRESS;
                        }
                        else if(KEY1==0||KEY2==0||KEY3==0||KEY4==0)
                        {
                                exit();
                        }
        }
}
void lift()
{
        assignment();
        if(current<call)
        {
            Floordifference=call-current;
                current=call;
                down=0;
                delay_10us(abs(Floordifference)*5000);
        }
        if(current>call)
        {
            Floordifference=current-call;
                current=call;
                up=0;
                delay_10us(Floordifference*5000);
        }               
}
void main()
{
lift();
大家看一下。

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

使用道具 举报

沙发
ID:1088185 发表于 2024-2-19 00:39 | 只看该作者
Break 不能这样用, Break原则上是个goto 的语句, 在函数里再goto 就错了
你可以用 #define exit()  break
回复

使用道具 举报

板凳
ID:883242 发表于 2024-2-19 06:13 | 只看该作者
把while(1)改成while(!(KEY1||KEY2||KEY3||KEY4)),并把while(1)内层对应语句删掉,exit()相关语句也可以删掉。
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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