Fixed bug 3089567.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2267 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
b7e7258008
commit
c88c5882d1
|
@ -41,7 +41,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief BaseSequentialStream specific methods.
|
* @brief BaseSequentialStream specific methods.
|
||||||
*/
|
*/
|
||||||
#define _base_sequential_stream_methods \
|
#define _base_sequential_stream_methods \
|
||||||
/* Stream write buffer method.*/ \
|
/* Stream write buffer method.*/ \
|
||||||
size_t (*write)(void *instance, const uint8_t *bp, size_t n); \
|
size_t (*write)(void *instance, const uint8_t *bp, size_t n); \
|
||||||
/* Stream read buffer method.*/ \
|
/* Stream read buffer method.*/ \
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
* @brief @p RamStream specific data.
|
* @brief @p RamStream specific data.
|
||||||
*/
|
*/
|
||||||
#define _memory_stream_data \
|
#define _memory_stream_data \
|
||||||
_base_sequental_stream_data \
|
_base_sequential_stream_data \
|
||||||
/* Pointer to the stream buffer.*/ \
|
/* Pointer to the stream buffer.*/ \
|
||||||
uint8_t *buffer; \
|
uint8_t *buffer; \
|
||||||
/* Size of the stream.*/ \
|
/* Size of the stream.*/ \
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.1.2 ***
|
*** 2.1.2 ***
|
||||||
|
- FIX: Fixed typo in memstreams.h (bug 3089567)(backported to 2.0.6).
|
||||||
- FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug
|
- FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug
|
||||||
3088776)(backported to 2.0.6).
|
3088776)(backported to 2.0.6).
|
||||||
- FIX: Fixed non functioning option SPI_USE_MUTUAL_EXCLUSION=FALSE (bug
|
- FIX: Fixed non functioning option SPI_USE_MUTUAL_EXCLUSION=FALSE (bug
|
||||||
|
|
Loading…
Reference in New Issue