I'm trying to read an accelerometer from a COG and as soon as I do that all the data comes back as 1's. I can turn pins on and off but can not get any data except 1's from shift_in. Code works just fine without putting it in a COG. Code attached.
Each cog has its own pair of dira/outa registers. By calling high(PEna) in the caller's (application) context this pin is set high (and remains so until reset). Starting acc_Loop in another cog will render it inoperative. This is due to it calling acc_ReadByte which in turn tries to toggle PEna. This pin however is held high by the main cog (the one which had acc_Init called).
You are correct, reading the hardware manual I see that the pins are controlled by OR's. Out takes precedence over In and High over low. Reworked the code to move everything into the COG and we have readings again. Thank you.
Comments