Fixed bug #796.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9963 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
41143cbe55
commit
c695f7340b
|
@ -402,7 +402,7 @@ static const msg_t os_messageQ_buf_##name[queue_sz]; \
|
||||||
static mailbox_t os_messageQ_obj_##name; \
|
static mailbox_t os_messageQ_obj_##name; \
|
||||||
const osMessageQDef_t os_messageQ_def_##name = { \
|
const osMessageQDef_t os_messageQ_def_##name = { \
|
||||||
(queue_sz), \
|
(queue_sz), \
|
||||||
sizeof (type) \
|
sizeof (type), \
|
||||||
(void *)&os_messageQ_obj_##name, \
|
(void *)&os_messageQ_obj_##name, \
|
||||||
(void *)&os_messageQ_buf_##name[0] \
|
(void *)&os_messageQ_buf_##name[0] \
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,6 +152,8 @@
|
||||||
- NIL: Added STM32F7 demo.
|
- NIL: Added STM32F7 demo.
|
||||||
- VAR: Fixed missing const qualifier in local shell commands array (bug #797)
|
- VAR: Fixed missing const qualifier in local shell commands array (bug #797)
|
||||||
(backported to 16.1.6, 3.0.6, 2.6.10).
|
(backported to 16.1.6, 3.0.6, 2.6.10).
|
||||||
|
- VAR: Fixed compilation error in cmsis_os.h (bug #796)(backported to 16.1.6,
|
||||||
|
3.0.6).
|
||||||
- HAL: Fixed double empty lines in HAL (bug #794)(backported to 16.1.6,
|
- HAL: Fixed double empty lines in HAL (bug #794)(backported to 16.1.6,
|
||||||
3.0.6, 2.6.10).
|
3.0.6, 2.6.10).
|
||||||
- RT: Fixed double empty lines in RT (bug #793)(backported to 16.1.6, 3.0.6).
|
- RT: Fixed double empty lines in RT (bug #793)(backported to 16.1.6, 3.0.6).
|
||||||
|
|
Loading…
Reference in New Issue