I want to read the MCU GPIO pin status and store it to an array of 10 numbers repeatedly. When the array is full, it should left shift the value and store the new value to a [9]th subscript position and continue.
How can i implement this as code in Embedded C ?
If I understood well, it should look like something like this:
With size, the size of you're array (10 for you). You should initialize you're array with 0 or -1 to be sure. However I don't know the difference between ansi C and embedded C. Maybe "for(int i = ;...)" doesn't work and you'll have to create the variable i just before. Not sure if that's what you wanted.