res = ADC_convert(adc, &adcValue0); 这句是干啥用的?
adcValue0MicroVolt = ADC_convertRawToMicroVolts(adc, adcValue0); 这句是采集微伏的,这个微伏我串口读不到!
只能读到第一句的值 是一个 16进制数,这个16进制数是个什么东西?
求解求解
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
res = ADC_convert(adc, &adcValue0); 这句是干啥用的?
adcValue0MicroVolt = ADC_convertRawToMicroVolts(adc, adcValue0); 这句是采集微伏的,这个微伏我串口读不到!
只能读到第一句的值 是一个 16进制数,这个16进制数是个什么东西?
求解求解
res = ADC_convert(adc, &adcValue0); 这句是干啥用的?
将模拟信号转化为数字信号
只能读到第一句的值 是一个 16进制数,这个16进制数是个什么东西?
ADC_convert()返回的结果原始值
参考adc例程https://dev.ti.com/tirex/explore/node?node=ABO7T5VshSOTTVANhMb1NQ__eCfARaV__LATEST
adcValue0MicroVolt = ADC_convertRawToMicroVolts(adc, adcValue0);
这个转换成微伏的值我咋读不到呢 排线插得的是DIO23
你是用adcsinglechannel例程和LAUNCHXL-CC1310去做測試的嗎?