Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
66 views

I am facing the issue that ADC DMA cannot work even I try re-init in many ways. Information: STM32L476 Stop mode and wake up via RTC Can re-init USB so the terminal still works Clock configuration ...
Nguyễn Phùng Thái Cường's user avatar
0 votes
1 answer
69 views

I am trying to use interrupts with the ADC module. I am using PA0 and PA1 as analog inputs for the ADC, and PC0 and PC1 as external LEDs. My goal is: when PA0 is triggered, PC0 should turn on. when ...
Umutcan Akyol's user avatar
0 votes
0 answers
30 views

Below is my python code for fetching data from ADS1263. The ic has been configured properly and i am getting the data. I want to filter the data on the fly or you can say fetch one data and filter it ...
Nimit Vachhani's user avatar
1 vote
1 answer
55 views

I'm using ADC continue scan mode with DMA for 2 channels, config by register, not use HAL library, make sure pin mode is analog mode When ADC just turn on clock, every thing be ok, voltage of pin PA0 ...
Thạch Duy's user avatar
0 votes
0 answers
52 views

According to the documentation, the SAADC (ADC) device has a maximum sampling rate of 200kHz (ksps), a value that is the sum of a minimum TACQ (acquisition time) of 3us and a conversion time of "&...
Olof Forshell's user avatar
0 votes
0 answers
63 views

The YL-69 sensor(for soil moisture using a comparator circuit LM-393) is functional. When tested with C code on the Arduino IDE, it prints the correct values on the serial monitor. However, when ...
Cecilia Brito's user avatar
0 votes
0 answers
48 views

Not sure if the is a h/w or s/w issue but here goes- I'm using the MAX11040K to sample 9 channels (all microphones) which give a signal between 0 to 3.3V DC-biased by 1.65V; that's input to all ...
user1937226's user avatar
0 votes
1 answer
65 views

I have a STM32WB55VG device where ADC Sampling for one channel is happening at a rate of 40 kHz. As the sampling duration is about 5 seconds the data (400 kBytes) can not be stored in RAM (only 256 ...
JonasD2700's user avatar
0 votes
0 answers
120 views

TLDR: Whenever I try to read a voltage that is lower than about 2.2V the display will freeze up. Only after I increase the voltage then after like 10 seconds it resumes operation. I am tinkering with ...
Jake Passolt's user avatar
0 votes
0 answers
93 views

I am creating a project with an AD7124-8 PMDZ eval board with an STM32H755ZI nucleo board. Communicating through : SPI Mode - 3 ( CPOL - 1, CPHA - 1 ), MSB first, 8 bit data length, No CRC. I have ...
Madhav Bhatnagar's user avatar
1 vote
1 answer
88 views

I am new to the tinyavr 1 series microcontrollers. I've tried copying the basic example out of the Microchip TB3209 guide, but it doesn't seem to do anything. I use the below code, where PA3 is an LED ...
Erik Vincent's user avatar
2 votes
1 answer
66 views

I am using adc7768 to receive ADC samples. According to datasheet to calculate CRC, we can do it every 4th or 16th sample. My question is for 4 samples last 3 samples CRC will be header of 4th sample. ...
maxy's user avatar
  • 75
0 votes
0 answers
42 views

See attached my waveform of input to channel of ADS1115, my code, and my output that I am getting I cannot get the output matplotlib waveform to plot smoothly like my input waveform from oscilloscope ...
Marc Rainey's user avatar
0 votes
1 answer
122 views

I am working on an embedded project with the STM32C031C6 microcontroller using STM32CubeIDE. My goal is to perform an FFT on ADC input data and transmit the results over UART. I am utilizing the ARM ...
Reebin Jose's user avatar
0 votes
0 answers
121 views

For the code for ADS1263 I wanted to measure with voltage reference 3.3V which comes from Raspberry Pi. How command for this should look like? The code is import board import busio import ADS1263 ...
Malum Phobos's user avatar
0 votes
0 answers
35 views

When ı try to read ADC values with this MCU, ıt does not give me 0 adc value when ı make ground a channel pin. It gives me 120 ADC (/4095) and ı did not get the reason.
Engineer's user avatar
1 vote
2 answers
1k views

Putting the finishing touches on an assignment (ESP-IDF PlatformIO) and my ADC initialization is throwing a warning that a define I'm calling is deprecated. It builds, so this is more in the "it ...
StarSword's user avatar
1 vote
1 answer
102 views

I'm trying to set up ADC for STM32F103C8T6 for a LED at PC13, which desired behaviour is blinking with frequency proportional to a potentiometer's resistance at PA0 (a kind of arm assembly hello-world ...
ntonk's user avatar
  • 115
2 votes
1 answer
265 views

I am trying to make a STM32CubeMX design with STM32C031. I have 11 ADC channels to read but I can only select 8 of them STM32CubeMX does not allow me to select more. Is there any reason for that? My ...
Engineer's user avatar
0 votes
0 answers
154 views

I'm using STM32CubeIDE and I have two active ADCs with many channels reading, some in regular converison, some injected, etc. The entire project is autogenerated from stm32 MC Workbench but I added a ...
KaleM's user avatar
  • 121
0 votes
1 answer
356 views

I am doing some development on a Weact STM32F411 black pill. Most of it has gone fine. However I am trying to read the voltage on the VBAT pin (backup 3V button cell) using the internal ADC, but I ...
nmw01223's user avatar
  • 1,745
0 votes
0 answers
153 views

I am working with the ADE7880 ADC and I am attempting to initialize it and use it to read and write registers via SPI in C on a Linux system. My goal is to capture ADC data through SPI, but I am ...
prial joshi 's user avatar
0 votes
1 answer
134 views

I am working on a project using the Texas Instruments EK-TM4C123GXL LaunchPad to measure the voltage of a breadboard power supply module(hw-131) . I am using the onboard ADC module to read the voltage,...
陳軍翰's user avatar
0 votes
0 answers
85 views

I'm writing my first PIC16F1618 project. I got stucked in a pretty strange error/behaviour. This's the repository of the project: Github repo The problem is the value resulting from the ADC sampling: ...
weirdgyn's user avatar
  • 1,018
1 vote
0 answers
57 views

I'm doing a training program for embedded development, and right now I'm working on setting up an ADC interrupt in an RTOS environment in IAR Embedded Workbench. I'm running into a problem when I try ...
b-rad90's user avatar
  • 59
0 votes
0 answers
37 views

I'm encountering a peculiar issue with an ESP32-WROOM ADC on a custom-designed PCB. The ADC has suddenly stopped working on one board, while it functions fine on others. Our design incorporates a ...
Ansif C P's user avatar
1 vote
1 answer
49 views

I am using Arduino Mega Pro, in the code I am reading 2 LM35 sensors using ADC and printing the value every 1 sec, and I am counting that 1 sec using a timer. But, the two sensors are giving me zero ...
Ahmed Rifaat's user avatar
0 votes
0 answers
63 views

I'm working with STM32h745 SPI to interface adc ADS7046. I trying to achieve sampling rate at least 2msps. Below I attach some snap for SCLK and CS signal. i trying to minimize time between sclk ...
DBP's user avatar
  • 1
1 vote
1 answer
223 views

I want to compare a number to another: if the comparison is true the current value must pass but if not it must stop. But I can't do this idea because the output of the compare block is boolean so if ...
Prinsca Kusorgbor's user avatar
0 votes
0 answers
69 views

This is a signal acquisition program where getDataEx is used to collect signals. When the start button is clicked in WPF, getDataEx function runs in a background thread, and the collected data is ...
Angel are helpless's user avatar
0 votes
2 answers
259 views

I am trying to extract the last word from a user attribute string. The user attribute is AAA.USER.ATTRIBUTE(7) The attribute value string is e.g. "ord1 ord2 ord3 ord4" If I use the ...
Hans Lindahl's user avatar
0 votes
0 answers
143 views

The chip I use is STM32G473VC, which is configured with 7 channel ADC and SPI slave station When the SPI DMA transmission is not started, the ADC works fine. However, when the SPI DMA transfer is ...
Mervin's user avatar
  • 1
0 votes
1 answer
330 views

I am working on a PIC32 with an ADS1115 https://docs.rs-online.com/85d7/A700000007080221.pdf#page=28&zoom=100,0,96. I put the ALERT pin of the ADS on an external interrupt of the PIC32. I nerver ...
DamanZ4's user avatar
  • 19
0 votes
0 answers
134 views

I am working on an STM32 project where I'm trying to configure the ADC to continuously convert and use DMA to transfer the results. Despite setting everything up according to the reference manual, the ...
Oriolshhh's user avatar
0 votes
1 answer
44 views

I have a custom PCB with ATmega2560. I use optiboot as bootloader and I made some changes. I allready enter in bootloader if soft reset was done. Now I want to enter in bootloader if the 5V pin is ...
Dimitris's user avatar
0 votes
1 answer
165 views

When I use Application Default Credentials to access GCP resources either through REST API or Java SDKs, I need to run re-authenticate every day using the "gcloud auth application-default login&...
Siva S's user avatar
  • 11
0 votes
0 answers
571 views

I am implementing an ADC on an STM32L476 to read a voltage value from a GPIO pin. I am not using HAL for efficiency reasons so I am doing it bare metal. However, every time I read a conversion I get ...
MysticDirt's user avatar
0 votes
1 answer
554 views

I am experiencing the following problem. When I setup an ADC with DMA for 5 channels, I get lower readings than the expected ones. We have PCBs of the same batch in 3 countries, but only the ones ...
K S's user avatar
  • 1
0 votes
0 answers
256 views

I have a MAX 9814 microphone/amplifier attached through ADC to my Raspberry Pi Pico WH. I am trying to get it record audio (specifically into a .wav file). I am struggling to understand the digital ...
Arianna Hu's user avatar
0 votes
1 answer
73 views

Devboard: Blackpill WeAct v3.0 MCU: STM32F401CEU6 IDE: Platformio Core: STM32duino I'm trying to rean an NTC using a simple voltage divider with a capacitor for filtering as shown in the circuit ...
Harvid's user avatar
  • 11
0 votes
1 answer
106 views

I am using the NUCLEO64 Board STM32L073RZ with current sensor IC ACS725. I am using the following ADC and Timer configuration for STM. ADC were configured for auto triger using timer2. Clock frequency ...
vishnu m c's user avatar
0 votes
1 answer
142 views

I recently downloaded a sample file for the C2000 F28379D from Texas Instruments and successfully viewed it (referred to as image1). I attempted to adapt this sample to work with the F28335 by ...
Reihaneh Teimoori's user avatar
0 votes
0 answers
217 views

My project is very simple, use a microcontroller to read some analog signal for a certain period then send the data to PC. I am using STM32F756 nucleo board. I have configured one ADC in DMA mode to ...
Abdur Rakib's user avatar
0 votes
1 answer
130 views

I am currently working on a Raspberry Pi project where I am using an analog to digital converter (ADC), and in my code, I would like the ADC to receive information continuously and fill a list with ...
shaun0367's user avatar
-2 votes
1 answer
136 views

frequency of the sine wave is 1 khz . Max Amplitude of the sine wave is 4.97 V in IEEE 754 floating point format Similarly other values values of the wave which is converted in to 16 bit binary . Want ...
Vardan Chetnani's user avatar
0 votes
0 answers
130 views

I am configuring the ADC to sequentially digitize the inputs ADC9, ADC14, ADC15, ADC6, ADC7, ADC8 (pins PF3, PF4, PF5, PF6, PF7, PF8). The controller pins are also configured. I also allow interrupts ...
user23292793's user avatar
1 vote
1 answer
2k views

I am writing code for a STM32G030 microcontroller. I'd like to use the ADC on one input channel. I observe, that the accuracy of ADC conversion results is way better in discontinuous conversion mode (=...
17tmh's user avatar
  • 73
2 votes
1 answer
358 views

I am pretty new to the microcontroller game. Recently I am trying to record audio on a Raspberry Pi Pico from an analogue electret microphone. Thus, I have built a (nicely working) preamp for the mic ...
tinker.toadie's user avatar
1 vote
0 answers
237 views

I've got issues with ESP32 ADC conversion. There is too much noise and interference. For example its measures are flying around for +-50 in normal conditions when the measurement should be constant. ...
CoNe's user avatar
  • 11
0 votes
1 answer
134 views

The code should do as follows, initialize adc so it can communicate with the external temp sensor, wired to breadboard. It is doing so, and I am getting accurate temperatures. Based on that ...
aasantiago's user avatar

1
2 3 4 5
14