Re: Critical bug in REC and PLAY
Reply #3 –
I've completely forgotten to post about the fix:
File bin.c
line 130:
buffer[c]=(uint8_t)NewIRcode;
I actually can't understand why, but this casting discards values of all bits and returns 0x0.
Casting to int instead of uint8_t worked fine for me.