STM32F7 fast threshold implimintation
Posted on August 25, 2016 at 10:39Hi,I have a 800 bytes array and I need to check if each byte is bigger than a threshold valuefor (i=0;i<800;i++) if Data[i] > TH then ....is there any other method to implement this threshold without loop and if?Tha...