gpt4 book ai didi

c - C变量中是否有可能 "Turn off"或 "Turn on"波动?

转载 作者:行者123 更新时间:2023-12-05 02:11:44 27 4
gpt4 key购买 nike

我在 C 中有两个静态可变变量,我想在逻辑语句中检查它们。但是,当我这样做时,我收到警告“未定义的行为:此语句 1037 中未定义 volatile 访问的顺序”是否有可能在很短的时间内暂停 C 变量的波动以确保良好的数据?

代码如下:

static volatile unsigned char b;
static volatile unsigned char a;

//update the states of the two volatile variables
update_vars( &a);
update_vars( &b);

// check them in a logical statement
// Can I suspend the volatile lable??
if((addr_bit & (a | b)) == 0){
// update another variables
}
else{
// another action
}

我是在中断的相同上下文中考虑这个问题,而如果你想在精确的时刻对数据进行稳定的评估,你可以暂时暂停它们。谢谢!

最佳答案

无法禁用变量的 volatile 属性。

您需要为每个创建一个非 volatile 副本,然后对其进行操作。

unsigned char a_stable = a;
unsigned char b_stable = b;

if((addr_bit & (a_stable | b_stable)) == 0){
...

关于c - C变量中是否有可能 "Turn off"或 "Turn on"波动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57058403/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com