Hello,
Yes, 2 stop bits is supported for ISO7816 T=0 mode. For example to configure UART0 in ISO7816 mode T=0 to support 2 stop bits:
1. enable ISO7816 T=0 mode UART_C1_REG(uartch) |= //UART_C1_M_MASK | /*For 8 data bits only*/ UART_C1_PT_MASK| //set Odd parity UART_C1_PE_MASK; UART_C7816_REG(uartch) = UART_C7816_ISO_7816E_MASK ;2. enable internal pull-up on UART0_TXD and UART0_RXD. if (TERM_PORT == UART0_BASE_PTR) { /* Enable the UART0_TXD function on PTD6 */ PORTD_PCR6 = PORT_PCR_MUX(0x3)|PORT_PCR_PE_MASK |PORT_PCR_PS_MASK ; // UART is alt3 function for this pin /* Enable the UART0_RXD function on PTD7 */ PORTD_PCR7 = PORT_PCR_MUX(0x3)|PORT_PCR_PE_MASK |PORT_PCR_PS_MASK; // UART is alt3 function for this pin }PS: When baud rate higher than 115200, internal pull-up might be weak, we recommend external pull-ups 4.7K.