Hello, I am sending simple example which periodically (1kHz) read all analog inputs and each values writes to memory by DMA and periodically print read values from memory to usart.ADC was configured:- All inputs except IN2, IN3 (pins used by usart), ...
Hello,yes it is free software. There is only need to create your ST account and than login with this. Did you try to download older version 1.15.0, it should be certainly available?Best regards
Hello,FLASH is by default write protected so before the program will try to write to flash memory it is needed to unlock flash memory. Here is an example for STM32G0B1 which it describes:STM32CubeG0/Projects/NUCLEO-G0B1RE/Examples/FLASH/FLASH_ErasePr...
Hello,you can try to configure DMA in circular mode and ADC using timer trigger, it will be continuously transferring adc results into the buffer. If the buffer will be for example for 16 values, program can pooling in while loop and based on DMA pos...