完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
为了优化代码,我将几乎所有的标志都放到了位结构中。现在我在写入位时遇到了CXSTM8中的一个错误。读取位不会带来任何问题。
对我来说好消息是我找到了解决方法。 这是一个例子: / * ------------------------------------------------ ---- * / typedef结构 { INT sem_on:1; / * bit * / INT sem_off:1; / * bit * / INT sem_tog:1; / * bit * / } key_; / * *结构/ key_ key_x; / * *结构/ key_ * key_down =& key_x; &安培; sharppragma 部分const {} / * *结构/ key_ * const key_up =& key_x; void clear_key_updown( 空虚 ) { / * *结构/ key_ * p_key; key_down-> sem_on = 0; / *变量指针.. - ********错误:错误的寻址模式********* / (* key_down).sem_on = 0; / *替代表达.. - ********错误:错误的寻址模式********* / p_key = key_down; / *指针替换 - o.k. * / p_key-> sem_on = 0; key_up-> sem_on = 0; / * const指针 - o.k. * / (* key_up).sem_on = 0; / *替代表达式 - o.k. * / } / * ---------文件结尾------------------------------ * / 您可以看到的解决方法是替换特定指针。 WoRo #cxstm8#cxstm8 以上来自于谷歌翻译 以下为原文 To optimize the code I put nearly all the flags to bit structures. Now I came across a bug in the CXSTM8 when writing to bits. Reading bits doesn't bring any problem. The good news for me is that I found a workaround. Here is the example: /*----------------------------------------------------*/ typedef struct { int sem_on :1; /* bit */ int sem_off :1; /* bit */ int sem_tog :1; /* bit */ } key_; /*struct*/ key_ key_x; /*struct*/ key_* key_down = &key_x; &sharppragma section const {} /*struct*/ key_* const key_up = &key_x; void clear_key_updown( void ) { /*struct*/ key_* p_key; key_down->sem_on = 0; /* variable pointer .. - ******** ERROR: bad addressing mode *********/ (*key_down).sem_on = 0; /* alternate expression .. - ******** ERROR: bad addressing mode *********/ p_key = key_down; /* pointer substitution - o.k. */ p_key->sem_on = 0; key_up->sem_on = 0; /* const pointer - o.k. */ (*key_up).sem_on = 0; /* alternate expression - o.k. */ } /*---------end of file------------------------------*/ The workaround you can see is to substitute the specific pointers. WoRo #cxstm8 #cxstm8 |
|
相关推荐
2个回答
|
|
嗨Woro,
我们无法在这里重现您的问题:请让我知道所使用的版本和编译器选项(这里或我的电子邮件:luca dot ubiali _at_ cosmic dot fr) 问候, 卢卡(宇宙) 以上来自于谷歌翻译 以下为原文 Hi Woro, we cannot recreate your problem here: please let me know the version and compiler options used (here or to my email: luca dot ubiali _at_ cosmic dot fr) Regards, Luca (Cosmic) |
|
|
|
嗨卢卡,
首先感谢您众所周知的promt回复。 我会将列表文件附加到此帖子中。 编译器命令行是: cxstm8 + mods0 + debug -pxp -no -pp -l -duC_MMI -dUART_SCI -iuc_mmi include -iinclude $(ToolsetIncOpts)-cl $(IntermPath)-co $(IntermPath)$(InputFile) 希望它能帮助解决问题。 最好的祝福, WoRo 以上来自于谷歌翻译 以下为原文 Hi Luca, thanks first for your well-known promt reply. I'll append the list file to this posting. The compiler command line is: cxstm8 +mods0 +debug -pxp -no -pp -l -duC_MMI -dUART_SCI -iuc_mmiinclude -iinclude $(ToolsetIncOpts) -cl$(IntermPath) -co$(IntermPath) $(InputFile) Hope it will help solving the problem. Best Regards, WoRo |
|
|
|
只有小组成员才能发言,加入小组>>
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
2715 浏览 1 评论
3235 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
1807 浏览 1 评论
3643 浏览 6 评论
6031 浏览 21 评论
1332浏览 4评论
206浏览 3评论
195浏览 3评论
对H747I-DISCO写程序时将CN2的st-link复用为usart1,再次烧录时无法检测到stlink怎么解决?
348浏览 2评论
STM32G474RE芯片只是串口发个数据就发烫严重是怎么回事?
440浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-19 09:44 , Processed in 1.418271 second(s), Total 78, Slave 62 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号