对数组的索引进行位屏蔽,Arduino 环境
我试图从结构中获取一个 16 位无符号整数,屏蔽它的前 8 位,并将其用作带有函数 AnalogWrite 的数组的索引,该函数将 Arduino 上的输出引脚和输出字节作为参数。 有问题的代码如下所示: analogWrite(outputPin, my_array[myStructure->data & 0xFF00 >> 8]);
不幸的是,此代码不起作用。 我总是得到零作为输出。 有任何想法吗?
I'm trying to take a 16 bit unsigned integer from a structure, mask the first 8 bits of it, and use it as an index to an array with the function analogWrite which takes the output pin on the Arduino and the output byte as arguments. The code in question looks something like this: analogWrite(outputPin, my_array[myStructure->data & 0xFF00 >> 8]);
Unfortunately, this code doesn't work. I always get zero as an output. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
运算符优先级。
这:
相当于:
但你想要:
Operator precedence.
This:
Is equivalent to:
But you want:
我怀疑运算符优先级。 尝试:
I suspect operator precedence. Try:
查看 C 的优先级表,您执行以下操作:
从 myStructure 获取数据
右移0xFF00 8步
按位及其数据
使用更多行或括号!
Looking at a precedence table for C you do the following:
Get data from myStructure
Right-shift 0xFF00 8 steps
Bit-wise and it with data
Use more rows or parenthesis!