Home | History | Annotate | Download | only in lib

Lines Matching defs:Parity

715     CHAR8             Parity;
718 switch (Uart->Parity) {
719 case 0 : Parity = 'D'; break;
720 case 1 : Parity = 'N'; break;
721 case 2 : Parity = 'E'; break;
722 case 3 : Parity = 'O'; break;
723 case 4 : Parity = 'M'; break;
724 case 5 : Parity = 'S'; break;
725 default : Parity = 'x'; break;
729 CatPrint(Str, L"Uart(DEFAULT %c",Uart->BaudRate,Parity);
731 CatPrint(Str, L"Uart(%d %c",Uart->BaudRate,Parity);