Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1665
    Anonymous
    Inactive

    Things seem to break down when I use your existing code then try to build a little array.  Your example breaks when I add this code and nothing else at the end of the loop():

    uint8_t data_out[N_DATA_BYTES] = {0};
    data_out[0] = 0x64;
    data_out[1] = 0x64;
    data_out[2] = 0x64;
    data_out[3] = 0x01;

     

    This makes me wonder whether you are relying on some memory being shared without explicitly passing that to a function?  This is really unfortunate because this little local array is important for me to transmit the data I just got from the PS2 controller.

     

     

    #1666
    Anonymous
    Inactive

    I should clarify also that N_DATA_BYTES is a macro that is just replaced with 4.

    #1671
    Bill
    Member

    I’ll take a look at it this weekend.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.