bit isUartEOL(void) {
    if (gotEOL) {
        gotEOL = 0;
        return 1;
    }
    else
        return 0;
} // isUartEOL()