Fixed to osal type names
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7016 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
7534f806fa
commit
e655ac4cd8
|
@ -117,7 +117,7 @@ static void set_error(uint8_t sra, SerialDriver *sdp) {
|
|||
}
|
||||
|
||||
#if AVR_SERIAL_USE_USART0 || defined(__DOXYGEN__)
|
||||
static void notify1(GenericQueue *qp) {
|
||||
static void notify1(io_queue_t *qp) {
|
||||
|
||||
(void)qp;
|
||||
UCSR0B |= (1 << UDRIE0);
|
||||
|
@ -166,7 +166,7 @@ static void usart0_deinit(void) {
|
|||
#endif
|
||||
|
||||
#if AVR_SERIAL_USE_USART1 || defined(__DOXYGEN__)
|
||||
static void notify2(GenericQueue *qp) {
|
||||
static void notify2(io_queue_t *qp) {
|
||||
|
||||
(void)qp;
|
||||
UCSR1B |= (1 << UDRIE1);
|
||||
|
|
Loading…
Reference in New Issue