Ning Yang commented on a discussion on bsps/shared/dev/serial/arm-pl011.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/47#note_111608

 > +{
 > +  uint32_t cr = regs->uartcr;
 > +  /*
 > +   * Control: Configure flow control
 > +   * NOTE: Flow control is untested
 > +   */
 > +  cr &= ~(PL011_UARTCR_CTSEN | PL011_UARTCR_RTSEN);
 > +  if ((term->c_cflag & CCTS_OFLOW) != 0)
 > +    cr |= PL011_UARTCR_CTSEN;
 > +  if ((term->c_cflag & CRTS_IFLOW) != 0)
 > +    cr |= PL011_UARTCR_RTSEN;
 > +
 > +  /* Control: Configure receiver */
 > +  if ((term->c_cflag & CREAD) != 0)
 > +    cr |= PL011_UARTCR_RXE;
 > +

Done

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/47#note_111608
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to