User Activity

HelloI am basically designing an interrupter for plasma arc speaker. I have a small signal amplifier which I connect to STM32F746 and perform FFT to determine which note was played. Whole process takes about 2ms. My transformer works with 25khz. I wa...
Hello I have DMA ADC and store data in uint16_t bufferI need to copy these values to input buffer to arm_rfft_fast_f32 function;the function should also cast ushort to float void copy_adc_to_input(uint16_t * int_buff, float32_t * float_buff, uint16_t...
So I fired up CUBEstarted ADC over DMA with circular mode and Half Word to memory then I added Continuous DMA requests and set TIM5 as trigger sourceI then set up timerADC is 12 bitsthen I started everything and this happenedhowever I do not understa...
Hello I am trying to perform FFT on real data sampled with ADC However, first I need to perform it on test data that I generated inside my code to verify it would workI set parameters: frequency, buffer size, sampling rate (buffsize 512)then I gener...
HelloWhen debugging, I obviously use ST-Link and Keil displays register values for meCan I export these values somehow without having to transmit them over UART?I need these values for later graphing in python and UART would just take unnecessary scr...