User Activity

#include "main.h" #include "stm32f4xx_hal.h"   /* Private variables ---------------------------------------------------------*/ ADC_HandleTypeDef hadc1;   /* Private function prototypes -----------------------------------------------*/ void SystemClo...
I want to configure ADC on STM32(Nucleo-F401RE) using Arduino IDE and transmit the values through SPI to Basys 3 FPGA(End Goal). The ADC works for input signal frequency only below 100Hz. How do I increase the throughput rate? My project requires con...
I would like to use the Single Channel (ADC1) of Nucleo-F401RE with DMA .i.e store the ADC values in a buffer and transmit them to FPGA using SPI Protocol. I'm afraid the nucleo is sending erratic data to FPGA. Also I'm unable to find what is the vol...
#include "main.h" #include "stm32f4xx_hal.h"     UART_HandleTypeDef huart2;     void SystemClock_Config(void); static void MX_GPIO_Init(void); static void MX_USART2_UART_Init(void);   char buffer[8]; int i = 6;   int main(void)   HAL_Init();     ...