If anyone knows a better way to trap the numbers and A-F only; please let me know.
if ((recvChar >= '0' && recvChar <= '9') || (recvChar >= 'A' && recvChar <= 'F")) // no comment needed
If anyone knows a better way to trap the numbers and A-F only; please let me know.
if ((recvChar >= '0' && recvChar <= '9') || (recvChar >= 'A' && recvChar <= 'F")) // no comment needed