git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9963 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-12-13 10:51:19 +00:00
parent 41143cbe55
commit c695f7340b
2 changed files with 3 additions and 1 deletions

View File

@ -402,7 +402,7 @@ static const msg_t os_messageQ_buf_##name[queue_sz]; \
static mailbox_t os_messageQ_obj_##name; \
const osMessageQDef_t os_messageQ_def_##name = { \
(queue_sz), \
sizeof (type) \
sizeof (type), \
(void *)&os_messageQ_obj_##name, \
(void *)&os_messageQ_buf_##name[0] \
}

View File

@ -152,6 +152,8 @@
- NIL: Added STM32F7 demo.
- VAR: Fixed missing const qualifier in local shell commands array (bug #797)
(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,
3.0.6, 2.6.10).
- RT: Fixed double empty lines in RT (bug #793)(backported to 16.1.6, 3.0.6).