diff options
author | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-08 18:58:22 +0000 |
---|---|---|
committer | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-08 18:58:22 +0000 |
commit | 7534f806fa2a50fc9ad43cf383ba9df25913a901 (patch) | |
tree | b693d2e185062f6116575fb875b4b3f71737124a /os | |
parent | 27ce73c013df91fc40d85fa585d6d2b995bd14fe (diff) | |
download | ChibiOS-7534f806fa2a50fc9ad43cf383ba9df25913a901.tar.gz ChibiOS-7534f806fa2a50fc9ad43cf383ba9df25913a901.tar.bz2 ChibiOS-7534f806fa2a50fc9ad43cf383ba9df25913a901.zip |
Fixed to osal type names
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7015 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/AVR/serial_lld.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/AVR/serial_lld.h b/os/hal/ports/AVR/serial_lld.h index eeb0fe384..d98210b4d 100644 --- a/os/hal/ports/AVR/serial_lld.h +++ b/os/hal/ports/AVR/serial_lld.h @@ -85,9 +85,9 @@ typedef struct { /* Driver state.*/ \
sdstate_t state; \
/* Input queue.*/ \
- InputQueue iqueue; \
+ input_queue_t iqueue; \
/* Output queue.*/ \
- OutputQueue oqueue; \
+ output_queue_t oqueue; \
/* Input circular buffer.*/ \
uint8_t ib[SERIAL_BUFFERS_SIZE]; \
/* Output circular buffer.*/ \
|