1

我正在使用 hx711 adc、nRF52832 DK 和 Segger 嵌入式工作室。问题是,我想做一个局部变量的副本,将最新的 adc 值存储到 hx711 回调函数中的全局变量中,然后读取这个全局变量。当我在回调函数中读取此值时,一切正常。全局变量和局部变量是一样的。但是当我在 main() 的开头读取这个全局变量时,全局变量总是等于 0。请参阅附件代码。谢谢

    #include "hx711.h"
    #include "nrf_delay.h"

    #include "nrf_log.h"
    #include "nrf_log_ctrl.h"
    #include "nrf_log_default_backends.h"


    int hx_test_val;



void hx711_callback(hx711_evt_t evt, int value) // hx711 runs on continous sampling mode, so this function is called on rate 10 or 80Hz, depending on hardware design
{
   hx_test_val = value; // local value is copied to global variable hx_test_val

   if(evt == DATA_READY)
    {
      NRF_LOG_INFO("ADC measuremement %d", hx_test_val); // here, the global variable is equal to local variable "value" (input of hx711_callback())
    }
   else
    {
      NRF_LOG_INFO("ADC readout error. %d 0x%x", value, hx_test_val);
    }
}


    /**@brief Function for initializing the nrf log module.
     */
static void log_init(void)
{
   ret_code_t err_code = NRF_LOG_INIT(NULL);
   APP_ERROR_CHECK(err_code);

   NRF_LOG_DEFAULT_BACKENDS_INIT();
}



    /**@brief Application main function.
     */
int main(void)
{

   hx711_init(INPUT_CH_A_128, hx711_callback);
   log_init();

/* Start continous sampling. Sampling rate is either
10Hz or 80 Hz, depending on hx711 HW configuration*/
   hx711_start(false);
   nrf_delay_ms(50);

   NRF_LOG_INFO("hx_copy: %d",hx_test_val); // here, the global variable is equal to 0

 }


    /**
     * @}
     */
4

1 回答 1

4

更改 的定义hx_test_val以包含volatile限定符:

volatile int hx_test_val;

我怀疑编译器的印象是 的值hx_test_val不能改变,因为编译器所知道的没有任何东西可以触及hx_test_val- 在你的代码中没有直接调用你的回调函数,所以编译器认为它可以只返回一个常量在您hx_test_val在 main 中访问的点处的值为 0 。

于 2019-12-29T19:26:32.390 回答