完善资料让更多小伙伴认识你,还能领取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 |
|
|
|
|
只有小组成员才能发言,加入小组>>
stm32mp157的异核通信的rpmsg_sdb的m4固件和a7驱动该如何编写?
1453 浏览 0 评论
stm32f103用freertos对一个采样率为1kHz的传感器,进行采样,数据出差
1502 浏览 0 评论
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
3649 浏览 1 评论
3842 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
2461 浏览 1 评论
STM32H7打开DCache后,出现了串口接收信息为空的现象,是哪里出了问题?
727浏览 5评论
用NANO STM32F103RBT6的开发板烧录不了是哪里出了问题?
661浏览 5评论
710浏览 5评论
外部中断触发类型为双边沿触发,进入中断回调后有什么办法判断该边沿是上升沿还是下降沿?
941浏览 5评论
STM32L071CBT6低温环境下无法正常工作是什么原因引起的?
745浏览 5评论
/9
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2025-12-2 00:07 , Processed in 0.766036 second(s), Total 74, Slave 57 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191

淘帖
4024