Choosing right CPU in STM32
Hello, I would like to ask you as a beginner in STM32 what product (the best case is the product that is possible to buy with Nucleo kit) I should target to for the application I will describe here:
I need to use two ADC channels with 1 MHz each and at least 10-bit range, save the value to some arrays (A[] and B[]) and every approx. 10ms make calculation:
1) apply offset fo each value and make a multiplication of each record in new array C (int32), like C[x] = (A[x] - offsetA) * (B[x] - offsetB)
2) calculate an average value for all arrays like avg(A), avg(B) and avg (C)
3) every 10ms send the average data to some periphery like serial bus and save to external FRAM memory (in circle when full)
I am now not sure how to make this but now I need maily chose the processor (best case with Nucleo kit available) that can work for my application.
Thank you very much for help
