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.

[参考译文] TMS320F2800156-Q1:ADC 测量不稳定-在干净的1.65V 输入上的测量值介于2300和4095之间

Guru**** 2539500 points


请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1413648/tms320f2800156-q1-adc-measurements-erratic---measuring-between-2300-and-4095-on-a-clean-1-65v-input

器件型号:TMS320F2800156-Q1

工具与软件:

我正在使用2300和4095计数之间的干净1.65V 输入在多个电路板上测量多个 ADC。  计数更有可能接近4095或接近2500、在3000秒内的可能性较低。  在 CCS 中观察测量值的同时、它们会在这个范围内随机摆动。

产生1.65V 电压的硬件已在多个电路板上进行了测量、以确保清洁干净。  我在3个不同的 ADC 引脚上使用有源运算放大器电路和无源分压器创建了此基准电压、结果都是一样的、因此我确信硬件不是问题。

在我的固件中、我使用与示例相同的代码、且每次转换均由软件触发:

//#############################################################################
//
// FILE:   adc_ex1_soc_software.c
//
// TITLE:  ADC Software Triggering
//
//! \addtogroup driver_example_list
//! <h1>ADC Software Triggering</h1>
//!
//! This example converts some voltages on ADCA and ADCC based on a software
//! trigger.
//!
//! The ADCC will not convert until ADCA is complete, so the ADCs will not run
//! asynchronously. However, this is much less efficient than allowing the ADCs
//! to convert synchronously in parallel (for example, by using an ePWM 
//! trigger).
//!
//! \b External \b Connections \n
//!  - A0, A1, C2, and C3 should be connected to signals to convert
//!
//! \b Watch \b Variables \n
//! - \b myADC0Result0 - Digital representation of the voltage on pin A0
//! - \b myADC0Result1 - Digital representation of the voltage on pin A1
//! - \b myADC1Result0 - Digital representation of the voltage on pin C2
//! - \b myADC1Result1 - Digital representation of the voltage on pin C3
//!
//
//#############################################################################
//
//
// $Copyright:
// Copyright (C) 2024 Texas Instruments Incorporated - http://www.ti.com/
//
// Redistribution and use in source and binary forms, with or without  
// modification, are permitted provided that the following conditions 
// are met:
// 
//   Redistributions of source code must retain the above copyright 
//   notice, this list of conditions and the following disclaimer.
// 
//   Redistributions in binary form must reproduce the above copyright
//   notice, this list of conditions and the following disclaimer in the 
//   documentation and/or other materials provided with the   
//   distribution.
// 
//   Neither the name of Texas Instruments Incorporated nor the names of
//   its contributors may be used to endorse or promote products derived
//   from this software without specific prior written permission.
// 
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// $
//#############################################################################
//

//
// Included Files
//
#include "driverlib.h"
#include "device.h"
#include "board.h"

//
// Globals
//
uint16_t myADC0Result0;
uint16_t myADC0Result1;
uint16_t myADC1Result0;
uint16_t myADC1Result1;

//
// Main
//
void main(void)
{
    //
    // Initialize device clock and peripherals
    //
    Device_init();

    //
    // Disable pin locks and enable internal pullups.
    //
    Device_initGPIO();

    //
    // Initialize PIE and clear PIE registers. Disables CPU interrupts.
    //
    Interrupt_initModule();

    //
    // Initialize the PIE vector table with pointers to the shell Interrupt
    // Service Routines (ISR).
    //
    Interrupt_initVectorTable();

    //
    // Set up ADCs, initializing the SOCs to be triggered by software
    //
    Board_init();

    //
    // Enable Global Interrupt (INTM) and realtime interrupt (DBGM)
    //
    EINT;
    ERTM;

    //
    // Loop indefinitely
    //
    while(1)
    {
        //
        // Convert, wait for completion, and store results
        //
        ADC_forceMultipleSOC(myADC0_BASE, (ADC_FORCE_SOC0 | ADC_FORCE_SOC1));

        //
        // Wait for ADCA to complete, then acknowledge flag
        //
        while(ADC_getInterruptStatus(myADC0_BASE, ADC_INT_NUMBER1) == false)
        {
        }
        ADC_clearInterruptStatus(myADC0_BASE, ADC_INT_NUMBER1);

        ADC_forceMultipleSOC(myADC1_BASE, (ADC_FORCE_SOC0 | ADC_FORCE_SOC1));
        //
        // Wait for ADCC to complete, then acknowledge flag
        //
        while(ADC_getInterruptStatus(myADC1_BASE, ADC_INT_NUMBER1) == false)
        {
        }
        ADC_clearInterruptStatus(myADC1_BASE, ADC_INT_NUMBER1);

        //
        // Store results
        //
        myADC0Result0 = ADC_readResult(ADCARESULT_BASE, ADC_SOC_NUMBER0);
        myADC0Result1 = ADC_readResult(ADCARESULT_BASE, ADC_SOC_NUMBER1);
        myADC1Result0 = ADC_readResult(ADCCRESULT_BASE, ADC_SOC_NUMBER0);
        myADC1Result1 = ADC_readResult(ADCCRESULT_BASE, ADC_SOC_NUMBER1);

        //
        // Software breakpoint. At this point, conversion results are stored in
        // myADC0Result0, myADC0Result1, myADC1Result0, and myADC1Result1.
        //
        // Hit run again to get updated conversions.
        //
        ESTOP0;
    }
}

我与示例代码的唯一偏差是我仅使用 ADCA、而不是两个 ADC。  我的 syscfg 中可能与此相关的其他设置包括:

ADC 基准电压=内部、2.5V

ADC 时钟预分频器=时钟/4.0

优先级模式=所有轮询

是否有任何已知的 gotcha 可导致固件出现这种行为?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好!

    您能否提供有关您的设置的更多详细信息?

       -使用的 SOC 是什么

       -映射到 SOC 的外部通道是什么

       -您能提供原理图吗?

    转换中随机值的典型问题是未连接/悬空模拟输入或 VREFHI 电源缺失、但在使用内部 VREF 模式的情况下、悬空 VREFHI 可能不是问题。

    此致、

    Joseph

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    我使用 SOC0、SOC1和 SOC2。  我尝试了以下配置但结果相同:

    • 所有触发条件都设置为仅软件
    • 所有触发器都设置为 EPWM1、ADCSOCA (我在固件中的其他位置运行 PWM)
    • 具有 EPWM1、ADCSOCA 触发器的 SOC0、其余的仅使用软件触发器
    • 在9、50和512个时钟下的 SoC 采样窗口
    • 多个引脚
      • A1、A2和 A3、顺序各不相同。

    我有一个板载3.3V 电源的分压器、该分压器使用我刚刚为调试该功能而构建的2个10k 电阻器和1 nF 电容器、并且通过示波器进行了验证我在 A1上有干净的1.65V 电压。

    此外、我还有一个输入 A2和 A3的运算放大器电路。  这两个器件都可向 A2和 A3生成干净的1.65V 信号、如下所示电路。  JS_1和 JS_2直接连接 到 A2和 A3、没有任何其他未显示的网络连接。  分压器和有源运算放大器电路都产生完全相同的行为。

     

    有趣的是、我能够将信号 JS_1和 JS_2扰动成+3.3V、使所有噪声都消失、并且我读出一致的~4060-4095。  如果我将其保持在1.65V 和3.3V 之间、它将显示计数在3000和4095之间、而不是2300和4095之间。  当滤波严重时、ADC 信号似乎跟随电压输入并偏置至4095。

    我确实将 VREFHI 悬空且 VREFLO 连接至 AGND、但我使用内部电压基准。  我已经尝试将 syscfg 中的基准电压更改为1.65v 和2.5V、并看到 ADC 值发生相应变化、但仍然存在相同的噪声模式。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    VREFHI 需要一个用于内部基准缓冲器的外部电容器。  您需要在 VREFHI 和 VREFLO (GND)之间连接一个2.2uF 的电容。

    此致、

    Joseph