mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-12 11:54:14 +00:00
Fixed SerialStream driver not setting stdin to the created serial stream.
This commit is contained in:
parent
658234a0b0
commit
7602566a05
@ -89,6 +89,7 @@
|
|||||||
Serial_Init(BaudRate, DoubleSpeed);
|
Serial_Init(BaudRate, DoubleSpeed);
|
||||||
|
|
||||||
stdout = &USARTStream;
|
stdout = &USARTStream;
|
||||||
|
stdin = &USARTStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Turns off the serial stream (and regular USART driver), disabling and returning used hardware to
|
/** Turns off the serial stream (and regular USART driver), disabling and returning used hardware to
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
* - Fixed EEPROM and FLASH ISP programming in the AVRISP project
|
* - Fixed EEPROM and FLASH ISP programming in the AVRISP project
|
||||||
* - Fixed incorrect values of USB_CONFIG_ATTR_SELFPOWERED and USB_CONFIG_ATTR_REMOTEWAKEUP tokens (thanks to Claus Christensen)
|
* - Fixed incorrect values of USB_CONFIG_ATTR_SELFPOWERED and USB_CONFIG_ATTR_REMOTEWAKEUP tokens (thanks to Claus Christensen)
|
||||||
* - Fixed SerialStream driver blocking while waiting for characters to be received instead of returning EOF
|
* - Fixed SerialStream driver blocking while waiting for characters to be received instead of returning EOF
|
||||||
|
* - Fixed SerialStream driver not setting stdin to the created serial stream
|
||||||
*
|
*
|
||||||
* \section Sec_ChangeLog091223 Version 091223
|
* \section Sec_ChangeLog091223 Version 091223
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user