mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-29 12:32:07 +00:00
Increased throughput of the USBtoSerial demo on systems that send multiple bytes per packet (thanks to Opendous Inc.).
This commit is contained in:
parent
2b74b517ea
commit
7d51e51c79
@ -18,6 +18,7 @@
|
|||||||
* - Added a timeout value to the TWI_StartTransmission() function, within which the addressed device must respond
|
* - Added a timeout value to the TWI_StartTransmission() function, within which the addressed device must respond
|
||||||
* - Webserver project now uses the board LEDs to indicate the current IP configuration state
|
* - Webserver project now uses the board LEDs to indicate the current IP configuration state
|
||||||
* - Added ENABLE_TELNET_SERVER compile time option to the Webserver project to disable the TELNET server if desired
|
* - Added ENABLE_TELNET_SERVER compile time option to the Webserver project to disable the TELNET server if desired
|
||||||
|
* - Increased throughput of the USBtoSerial demo on systems that send multiple bytes per packet (thanks to Opendous Inc.)
|
||||||
*
|
*
|
||||||
* <b>Fixed:</b>
|
* <b>Fixed:</b>
|
||||||
* - Fixed software PDI/TPI programming mode in the AVRISP project not correctly toggling just the clock pin
|
* - Fixed software PDI/TPI programming mode in the AVRISP project not correctly toggling just the clock pin
|
||||||
|
@ -90,11 +90,11 @@ int main(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Read bytes from the USART receive buffer into the USB IN endpoint */
|
/* Read bytes from the USART receive buffer into the USB IN endpoint */
|
||||||
if (USARTtoUSB_Buffer.Elements)
|
while (USARTtoUSB_Buffer.Elements)
|
||||||
CDC_Device_SendByte(&VirtualSerial_CDC_Interface, Buffer_GetElement(&USARTtoUSB_Buffer));
|
CDC_Device_SendByte(&VirtualSerial_CDC_Interface, Buffer_GetElement(&USARTtoUSB_Buffer));
|
||||||
|
|
||||||
/* Load bytes from the USART transmit buffer into the USART */
|
/* Load bytes from the USART transmit buffer into the USART */
|
||||||
if (USBtoUSART_Buffer.Elements)
|
while (USBtoUSART_Buffer.Elements)
|
||||||
Serial_TxByte(Buffer_GetElement(&USBtoUSART_Buffer));
|
Serial_TxByte(Buffer_GetElement(&USBtoUSART_Buffer));
|
||||||
|
|
||||||
CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
|
CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
|
||||||
|
Loading…
Reference in New Issue
Block a user