完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
#include
#include #define uchar unsigned char #define uint unsigned int ***it adca=P3^4; ***it adcb=P3^5; ***it adcc=P3^6; ***it adcoe=P3^1; ***it adcst=P3^0; ***it adceoc=P3^2; //数码管1——10 uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6f,0x77,0x7c, 0x39,0x5e,0x79,0x71}; uint t; uchar temp1; uchar code discount[3]={0x00,0x00,0x00}; void delay(uint z) { uint x,y; for(x=z;x>0;x--) for(y=110;y>0;y--); } //定时器0初始化 void init() { TMOD=0x01; TH0=(65536-50000)/256; TL0=(65536-50000)%256; EA=1; TR0=1; ET0=1; } //adc0808 模数转换初始化 void init_adc() { adcst=0; adcoe=0; adca=0; adcb=0; adcc=0; adceoc=0; } //adc0808 模数转换进行 uchar adc() { uchar getdata; adcst=1; delay(2); adcst=0; delay(2); while(!adceoc); adcoe=1; getdata=P0; adcoe=0; return getdata; } //数码管显示 void shumaguan(uchar temp) { uint i; discount[0]=temp/51; //此处出现了问题。 C(64-65):error C183: unmodifiable lvalue -3 Error(s),0 warning (s). discount[1]=temp%51*10/51; discount[2]=(temp)%51*10%51*10/51; if(t==10); t=0; for(i=0;i<3;i++) { P1=_crol_(temp1,i); P2=discount[i]; } } //主函数 void main() { temp1=0xfe; init(); init_adc(); while(1) { shumaguan(adc()); } } //定时0中断 void timer0() interrupt 1 { TH0=(65536-50000)/256; TL0=(65536-50000)%256; t++; } |
|
相关推荐
2个回答
|
|
uchar code discount[3]={0x00,0x00,0x00};你使用用code关键字,说明这些值是保存在代码区的,是不能进行修改的,即常量数组。你后面对它进行赋值当然是不行的!你应该定义为变量,去掉那个code关键字!
|
|
|
|
ntmusic 发表于 2014-2-19 09:02 受教了,以后会更加注意细节。 |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
嵌入式学习-飞凌嵌入式ElfBoard ELF 1板卡-LCD显示图片编程示例之介绍mmap
180 浏览 0 评论
《DNESP32S3使用指南-IDF版_V1.6》第二章 常用的C语言知识点
587 浏览 0 评论
【RA-Eco-RA2E1-48PIN-V1.0开发板试用】(第三篇)ADC采集+PWM输出
549 浏览 0 评论
《DNK210使用指南 -CanMV版 V1.0》第四十五章 人脸识别实验
548 浏览 0 评论
1051 浏览 0 评论
【youyeetoo X1 windows 开发板体验】少儿AI智能STEAM积木平台
11763 浏览 31 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 17:07 , Processed in 0.632496 second(s), Total 71, Slave 55 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号