Fixed bug 3561279.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4625 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
9bbc098eb6
commit
5191c88ead
|
@ -67,15 +67,14 @@ typedef int32_t cnt_t; /**< Resources counter. */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Packed structure modifier (within).
|
* @brief Packed structure modifier (within).
|
||||||
* @note It uses the "packed" GCC attribute.
|
* @note Empty in this port.
|
||||||
*/
|
*/
|
||||||
#define PACK_STRUCT_STRUCT __attribute__((packed))
|
#define PACK_STRUCT_STRUCT
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Packed structure modifier (before).
|
* @brief Packed structure modifier (before).
|
||||||
* @note Empty in this port.
|
|
||||||
*/
|
*/
|
||||||
#define PACK_STRUCT_BEGIN
|
#define PACK_STRUCT_BEGIN __packed
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Packed structure modifier (after).
|
* @brief Packed structure modifier (after).
|
||||||
|
|
|
@ -67,15 +67,14 @@ typedef int32_t cnt_t; /**< Resources counter. */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Packed structure modifier (within).
|
* @brief Packed structure modifier (within).
|
||||||
* @note It uses the "packed" GCC attribute.
|
* @note Empty in this port.
|
||||||
*/
|
*/
|
||||||
#define PACK_STRUCT_STRUCT __attribute__((packed))
|
#define PACK_STRUCT_STRUCT
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Packed structure modifier (before).
|
* @brief Packed structure modifier (before).
|
||||||
* @note Empty in this port.
|
|
||||||
*/
|
*/
|
||||||
#define PACK_STRUCT_BEGIN
|
#define PACK_STRUCT_BEGIN __packed
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Packed structure modifier (after).
|
* @brief Packed structure modifier (after).
|
||||||
|
|
|
@ -79,6 +79,8 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.4.3 ***
|
*** 2.4.3 ***
|
||||||
|
- FIX: Fixed packed structures macros not functional in IAR and RVCT port
|
||||||
|
(bug 3561279).
|
||||||
- FIX: Fixed Problem in FatFs demos related to LFN (bug 3560980).
|
- FIX: Fixed Problem in FatFs demos related to LFN (bug 3560980).
|
||||||
- NEW: I2C workaround allowing to read single byte on all STM32 platforms
|
- NEW: I2C workaround allowing to read single byte on all STM32 platforms
|
||||||
except STM32F1xx.
|
except STM32F1xx.
|
||||||
|
@ -449,6 +451,7 @@
|
||||||
3031534).
|
3031534).
|
||||||
- FIX: Fixed wrong macro check in the STM32 SPI driver (bug 3028562).
|
- FIX: Fixed wrong macro check in the STM32 SPI driver (bug 3028562).
|
||||||
|
|
||||||
|
|
||||||
*** 2.0.2 ***
|
*** 2.0.2 ***
|
||||||
- FIX: Fixed invalid context restore in MSP430 port (bug 3027975).
|
- FIX: Fixed invalid context restore in MSP430 port (bug 3027975).
|
||||||
- FIX: Fixed STM32 vectors file (bug 3026528).
|
- FIX: Fixed STM32 vectors file (bug 3026528).
|
||||||
|
|
Loading…
Reference in New Issue