All values I'm sending are positive integers, so I want to keep all 128 values reserved for commands and not have to worry about one being the termination character. Is there something I'm missing, or is it just not possible to have a negative integer as that termination character??
For example:
readBytesUntil(-10, buff, BUFF_SIZE);
Thanks in advance

