voidHardwareSerial::_tx_udr_empty_irq(void){// If interrupts are enabled, there must be more data in the output
// buffer. Send the next byte
unsignedcharc=_tx_buffer[_tx_buffer_tail];_tx_buffer_tail=(_tx_buffer_tail+1)%SERIAL_TX_BUFFER_SIZE;*_udr=c;// clear the TXC bit -- "can be cleared by writing a one to its bit
// location". This makes sure flush() won't return until the bytes
// actually got written. Other r/w bits are preserved, and zeroes
// written to the rest.
*_ucsra=((*_ucsra)&((1<<U2X0)|(1<<MPCM0)))|(1<<TXC0);if(_tx_buffer_head==_tx_buffer_tail){// Buffer empty, so disable interrupts
cbi(*_ucsrb,UDRIE0);}}
// If interrupts are enabled, there must be more data in the output
// buffer. Send the next byte
unsignedcharc=_tx_buffer[_tx_buffer_tail];_tx_buffer_tail=(_tx_buffer_tail+1)%SERIAL_TX_BUFFER_SIZE;*_udr=c;
// clear the TXC bit -- "can be cleared by writing a one to its bit
// location". This makes sure flush() won't return until the bytes
// actually got written. Other r/w bits are preserved, and zeroes
// written to the rest.
*_ucsra=((*_ucsra)&((1<<U2X0)|(1<<MPCM0)))|(1<<TXC0);
/*
Copyright (c) 2016 garretlab.
Added source code explanation by garretlab.
*//*
HardwareSerial.cpp - Hardware serial library for Wiring
Copyright (c) 2006 Nicholas Zambetti. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Modified 23 November 2006 by David A. Mellis
Modified 28 September 2010 by Mark Sproul
Modified 14 August 2012 by Alarus
Modified 3 December 2013 by Matthijs Kooijman
*/