TI E2E support forums
TI E2E support forums
  • User
  • Site
  • Search
  • User
  • E2E™ design support >
  • Forums
    • Amplifiers
    • API solutions
    • Audio
    • Clock & timing
    • Data converters
    • DLP® products
    • Interface
    • Isolation
    • Logic
    • Microcontrollers
    • Motor drivers
    • Power management
    • Processors
    • RF & microwave
    • Sensors
    • Site support
    • Switches & multiplexers
    • Tools
    • Wireless connectivity
    • Archived forums
    • Archived groups
  • Technical articles
  • TI training
    • Tech days
    • Online training
    • Live events
    • Power Supply Design Seminar
  • Getting started
  • 简体中文
  • More
  • Cancel
Sensors

Sensors

Sensors forum

  • Mentions
  • Tags
  • More
  • Cancel
  • Ask a new question
  • Ask a new question
  • Cancel
Texas Instruments (TI) Sensors support forum is an extensive online knowledge base where millions of technical questions and solutions are available 24/7. You can search sensors IC content or ask technical support questions on everything from temperature and humidity sensors to magnetic sensors and mmWave sensors. Find the right solution for your circuit design challenges by using our TI E2E™ support forums that are supported by thousands of contributing TI experts.
Frequent questions
    • 10/30/2024
    • Jesse Baker

    [FAQ] TI-MAGNETIC-SENSE-SIMULATOR: Example Simulation Files

    Part Number: TI-MAGNETIC-SENSE-SIMULATOR

    Tool/software:

    Where can I find example simulation JSON files for the TI Magnetic Sense Simulator (TIMSS)?

    Sensors forum Sensors
    • 10/30/2024
    • Jesse Baker

    [FAQ] TI-MAGNETIC-SENSE-SIMULATOR: Relevant Collateral

    Part Number: TI-MAGNETIC-SENSE-SIMULATOR

    Tool/software:

    Where can I find collateral that is relevant to the different features in TI Magnetic Sense Simulator (TIMSS)?

    Sensors forum Sensors
    • 10/14/2024
    • Nathan Block

    [FAQ] IWRL6432AOP: Sensor crashing on factory calibration command (rl_fecssRfFactoryCal)

    Part Number: IWRL6432AOP

    Tool/software:

    This is an FAQ post, where a TI expert writes the question and response to a common issue that some customers may face during development.

    Question: My IWRL6432 device is crashing on the call to rl_fecssRfFactoryCal(). For some reason, it keep rebooting to the demo start like the picture below. I did NOT modify any of the software or hardware, and I'm using a configuration file that never showed any issues before. Why is this happening?

    Sensors forum Sensors
    • 10/7/2024
    • Pradipta Bandyopadhyay

    [FAQ] MMWAVE-MCUPLUS-SDK: [FAQ] Signal Processing Chain Algorithms Questions_2024 (AWR29xx devices)

    Part Number: MMWAVE-MCUPLUS-SDK

    Tool/software:

    Q1) How many cycles does CFAR operation take on the HWA?

    Comment) The CFAR operation also works in a streaming mode. The number of cycles it would take would be in the order of ACNT * BCNT along with some added latency.

    Q2) How is local max used in the OOB demo? / How to configure input and output formatter for Local Max operation:

    Comment) A local maxima is performed on the Azimuth FFT samples during the azimuth stage of the doppler processing in both range and doppler dimension to obtain the approximate peak index of the angle FFT. Row-wise as well as column-wise comparison is performed, and "0 1 0 1 0 1 0 1", i.e., a "+" shaped comparison is utilized.

    Only the registers in the table below need to be programmed for proper local max functionality – the other bits in the param-set should all be kept 0.

    Q3) How and why to use per stage butterfly scaling for FFT operations on the HWA / How to choose scaling configurations on the HWA? / How to check for clipping or saturation in the HWA?

    Comment) Some pointers need to be considered when choosing the appropriate scale setting for the data in an actual
    use case which will be discussed in this article.

    The data bit width of typical radar ADC data is 16 bits, and the internal data bit width of the HWA is 24 bits. This allows for bit growth up to 8 bits without saturation for any of the processing performed which can be controlled by the user. Scaling options available in the HWA with respect to the input and output are as follows:
    •Input formatter can scale the input data streamed into the engine.
    •Output formatter can scale the output data streamed out of the engine before placing the samples on to the
    memory.
    •The FFT engine has scaling control over each stage of the butterfly used where the scale of 0.5 can be applied.
    •CMULT operations could apply a scaling based on which mode is being used and how the user has configured it.
    •It is very important that the user is aware of the scaling applied on the data at any given time of the processing chain in order to understand what level of output to expect, adjust other parameters such as thresholds that heavily relies on the exact scale of the data accordingly.

    Need for FFT scaling:

    • From the definition of the DFT, the maximum value X(K) can have when taking an N point FFT will be N*X(t). This can be derived from sum up to N numbers and X(t) sample will have a max value of 2^16 based on the ADC bit width.
    • E.g.: A 256 point FFT, can grow as much as 2^8 times the input. In terms of the HWA, the register bit width is 24 bits. Therefore, if there is no input scaling performed, the FFT output can grow all the way up to 24 bits after its 8 stages. (2^16 * 2^8 = 2^24).
    • Now, based on this, if the user goes for an FFT size N greater than 256, there is a chance that the FFT data could get clipped and saturate as the HWA bit width still remains to be 24 bits.
    • Hence, a per stage scaling could be applied in the successive butterfly stages after the initial 8 bit growth to retain the level of the data at 24 bits.
    • Note: If the FFT is done after the first dimension, the output can be either 16 bit or 32 bit and if it’s 32 bit, then there won’t be any bits to grow. Therefore, scaling would have to be done for all stages here.
    • The same can be seen in the table (This is considering that there is no scaling applied previously in any input or pre processing stage).

    FFT stages to scale based on FFT size:

    FFT Size Num Stages to scale
    Less than 256 (2^8) 0
    256 (2^8) 0
    512 (2^9) Last 1 stage
    1024 (2^10) Last 2 stages
    2048 (2^11) Last 3 stages

    When to program the FFT BFLY Scale regs:

    • Based on factors such as Tx/Rx gain, Tx output power, acquired target power etc. there might not even be a need to perform mandatory butterfly scaling as the data would not saturate.
    • The FFT butterfly scaling is supposed to be performed once the sensor is deployed and feedback from the experiments are evaluated. The feedback can be with respect to the CLIP registers getting hit.
    • Here are some read only registers that can indicate clipping in a typical FFT chain:
      •IP_OP_FORMATTER_CLIP_STATUS : This particular register can indicate if the data being scaled by the input or output formatter gets clipped.
      •FFT_CLIP : This register indicates any saturation/clipping events that have happened in the FFT butterfly stages. If raised, this would also have to be cleared each time FFT is performed again.
    • Some of the internal accumulators such as the DC estimate, Interference stats or CMULT operation regs can also clip which have their own clipping indicator registers. Based on the feedback from the experiments after deploying the sensor, these can also be scaled accordingly (More info is found in the device TRM).
    Sensors forum Sensors
    • 9/24/2024
    • Scott Bryson

    [FAQ] TMAG5233: What is the lowest power, highest sensitivity Hall-effect switch TI offers?

    Part Number: TMAG5233

    Tool/software:

    Hall-effect sensors are often the most cost effective option for magnetic switch designs.

    When the sampling rate of the Hall-effect sensor is adjusted down, the total active sampling time needed to produce the Hall-effect is reduced and the sensor will spend the majority of the time in a low power mode until ready for the next sample.  Devices like TMAG5233 drive the average current down to a minimum by setting the sample rate to as low as 5Hz.  This results in a dramatic reduction in power consumption.

    In the image above, we see the normal conversion cycle for TMAG5233, where once the minimum operating Voltage is reached on the supply, the device will periodically become active for a period (tactive), which for TMAG5233 is approximately 26µs.

    Based on the sample rate of the device selected, it will remain in sleep mode for a time (ts) until time for the next sample.  In the case of the 5Hz variant of TMAG5233 ts is typically about 200ms. This lets the device reach average operating currents as near 0.55µA.

    Sensors forum Sensors
    • 9/24/2024
    • Scott Bryson

    [FAQ] TMAG5233: Is there an xMR switch replacement using Hall-effect Sensors?

    Part Number: TMAG5233

    Tool/software:

    xMR is a term which generally describes any form of magneto resistive sensor. This includes anisotropic magnetoresistance (AMR), giant magneto resistance (GMR), and tunneling magneto resistance (TMR).  Each of these operates under somewhat different mechanisms, but all of these use structures that will vary in resistivity as the angle of the sensed magnetic field changes.

    Particularly in the case of GMR and TMR structures, these are built with complex layering of magnetic and non-magnetic materials that are highly specialized.  They also include a region which has been magnetized during production that is often referred to as a pinned layer.  The magnetization of the pinned layer results with a maximum input magnetic field that if exceeded will re-magnetize this layer and permanently affect the accuracy of the sensor.  The complex layer count and this magnetization result in a higher cost manufacturing flow.

    The very high magnetic sensitivity and high resistivity of TMR structures tends to allow for low switching thresholds and low operating currents which are both preferred in switching applications.  Due to their construction, xMR sensors are often sensitive to a magnetic field component in either the X or Y axis directions. 

    The high device cost of these sensor materials can make them less desirable in cost sensitive designs. As an alternative, Hall-effect sensors cost advantage make them a practical option when configured correctly.  While these devices have higher current while being sampled, it is possible to reduce the sample rate and have the device in a very low power state when idle.  Many sensing solutions detect interactions with human-machine interface (HMI) controls, and do not require fast sample rates.  Particularly in these cases, Hall-effect sensors like TMAG5233, TMAG5133, and TMAG5134 provide excellent options to consider against an xMR sensor. 

     

    Device Grade Sensitivity Package Options Average Current (μA)
    TMAG5233 Commercial In-Plane SOT23-3 (DBV)

    2.7μA (40Hz)

    0.55μA (5Hz)

    DRV5032 Commercial Vertical

    SOT23-3 (DBV)

    TO-92 (LPG)

    X2SON (DMR)

    5.7μA (80Hz)

    1.6μA (20Hz)

    0.69μA (5Hz)

    TMAG5231 Commercial Vertical

    SOT23-3 (DBV)

    X2SON (DMR)

    16μA (216Hz)

    2μA (20Hz)

    1.3μA (10Hz)

    TMAG5123 (Q1) Commercial (Automotive) In-Plane SOT23-3 (DBV) 3.5mA (10kHz)
    Sensors forum Sensors
    • 8/27/2024
    • Ren Schackmann

    [FAQ] TMP112: Need Linux C code for I2C sensor

    Part Number: TMP112

    Tool/software:

    Please provide example C code for TMP112 temperature sensor.

    Sensors forum Sensors
    • 7/25/2024
    • Nathan Block

    [FAQ] IWRL6432: Is my IWRL6432 an ES1 or ES2 revision?

    Part Number: IWRL6432

    Tool/software:

    If you are not sure if your IWRL6432 is an ES1 or ES2 revision, use the below table to figure out.

    All devices ordered from TI in the future will be ES2. TI no longer produces ES1 devices, so this post only refers to boards already ordered.

    Sensors forum Sensors
    • 7/16/2024
    • Bob Benjamin

    [FAQ] PGA900: Questions EVM Related to the PGA900, PGA300, PGA302 and PGA305 Devices

    Part Number: PGA900

    Tool/software:

    I have some questions regarding the EVM and software as follows:

    • Issues related to .net
    • Issues related to the gain computation button
    • Corrupted PGA305 user’s guide
    • Issues related to ADC temperature drift

    Thanks!

    Sensors forum Sensors
    • 7/16/2024
    • Bob Benjamin

    [FAQ] PGA900: Questions DAC Related to the PGA900, PGA300, PGA302 and PGA305 Devices

    Part Number: PGA900

    Tool/software:

    I have some questions regarding the use of the DAC on the PGA devices as follows:

    • How do I get my +/-20mV input signal from my sensor to correspond to 0 to 3V on my DAC output?
    • What does it mean by ratiometric DAC output, and how do I achieve this?

    Thanks!

    Sensors forum Sensors
<>

View FAQ threads
  • Tags
  • RSS
  • More
  • Cancel
  • Suggested Answer

    AWR1443BOOST: level sensing 0 Locked

    343 views
    3 replies
    Latest over 3 years ago
    by Akash Gondalia
  • Suggested Answer

    [FAQ] Computing Maximum Range, Velocity and Resolution mmWave System 0 Locked

    5581 views
    1 reply
    Latest over 3 years ago
    by Akash Gondalia
  • Suggested Answer

    AWR6843AOP: Calibration 0 Locked

    241 views
    1 reply
    Latest over 3 years ago
    by CHETHAN KUMAR Y.B.
  • Suggested Answer

    MMWAVEICBOOST: Clear steps (please) for implementing Hardware Trigger through sync_in trigger signal in pin 9 of J5 in Mmwaveicboost (Documentation if available) 0 Locked

    431 views
    1 reply
    Latest over 3 years ago
    by Ishita Kochar
  • Suggested Answer

    LDC1612: Inductance Sensing of a Spring while expanding or compressing. 0 Locked

    632 views
    3 replies
    Latest over 3 years ago
    by Justin Beigel
  • Suggested Answer

    TUSS4440: Vout performace different 0 Locked

    231 views
    1 reply
    Latest over 3 years ago
    by Jacob Nogaj
  • Answered

    BOOST-LDC3114EVM: The size of BOOST-LDC3114EVM 0 Locked

    243 views
    1 reply
    Latest over 3 years ago
    by Justin Beigel
  • Suggested Answer

    IWR6843ISK: Use Sense and Direct HVAC Control for outdoor environment 0 Locked

    247 views
    3 replies
    Latest over 3 years ago
    by Jackson Thomas
  • Answered

    MMWCAS-RF-EVM: Running Lab Script 0 Locked

    221 views
    2 replies
    Latest over 3 years ago
    by Alice Ruget
  • Not Answered

    DCA1000EVM: mmWave Studio 0 Locked

    142 views
    1 reply
    Latest over 3 years ago
    by Ishita Kochar
  • Not Answered

    DCA1000EVM: mmWave Studio 0 Locked

    119 views
    2 replies
    Latest over 3 years ago
    by Ishita Kochar
  • Answered

    MMWCAS-DSP-EVM: mmwave studio 0 Locked

    267 views
    2 replies
    Latest over 3 years ago
    by Ishita Kochar
  • Suggested Answer

    LM63: Read FAN speed accuracy 0 Locked

    404 views
    4 replies
    Latest over 3 years ago
    by Josh Wyatt
  • Suggested Answer

    LMP91000EVM: 找不到EVM GUI Tool. 0 Locked

    419 views
    1 reply
    Latest over 3 years ago
    by Josh Wyatt
  • Answered

    LDC1612: functional safety documents 0 Locked

    371 views
    2 replies
    Latest over 3 years ago
    by Florian Strobel
  • Answered

    AWR2243: I want to know the operating principle of the transmitter subsystem of this model 0 Locked

    328 views
    7 replies
    Latest over 3 years ago
    by jiaxuan liu
  • Suggested Answer

    IWR6843ISK-ODS: FMCW radar chirps issue 0 Locked

    858 views
    3 replies
    Latest over 3 years ago
    by zigang Yang
  • Answered

    About New Product Update: Digital Power Monitors 0 Locked

    129 views
    3 replies
    Latest over 3 years ago
    by Ryu Yamashita
  • Suggested Answer

    IWR6843: IWR6843: What is the value(range profile) of Relative Power of mmwave demo visualizer in demo code? (V2) 0 Locked

    756 views
    5 replies
    Latest over 3 years ago
    by Sudharshan KN
  • Suggested Answer

    AWR1443BOOST: Broken Unit - replacement/refund requested 0 Locked

    326 views
    6 replies
    Latest over 3 years ago
    by aozer
<>