Many years ago, when the serial port protocol was started, a break was defined as the time between bursts of bytes. Bursts of bytes (one or more) are transmitted ... then there is a pause before the next burst of bytes is transmitted. That pause is a break.
To help keep things simple, a byte of data begins with a start bit and ends with a stop bit. This is followed by a second byte with a start bit and stop bit. The start bit can occur immediately after the last stop bit ... or it can occur later.
The stop bit is the opposite polarity of the start bit. If the start bit is a zero, then the stop bit is a one. In this case, when the signal goes to zero after the stop bit, it is interpreted as another start bit.
TI design folks have decided that the signal must be zero to be a break. This is an error in logic. Multiple start bits (more than 10) is a framing error. A break is when there are multiple stop bits ... which is standard RS232 communication.
It is unfortunate that some TI person decided to changed this protocol. The current TI micros require us to use a timer to determine when there is a break in the communication. This consumes time and power. If TI micros used multiple stop bits as a break, it would reduce time and power consumption.
It would be good if TI modified their micros to handle this correctly. I doubt it would impact anyone ... unlikely anyone uses the TI break system as it is unusable in its current form.