Fixed bug #902.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_17.6.x@10959 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
4cfd7100f9
commit
0b0943df7e
|
@ -260,6 +260,11 @@ void chSysInit(void) {
|
|||
nil.lock_cnt = (cnt_t)1;
|
||||
#endif
|
||||
|
||||
/* Memory core initialization, if enabled.*/
|
||||
#if CH_CFG_USE_MEMCORE == TRUE
|
||||
_core_init();
|
||||
#endif
|
||||
|
||||
/* Heap initialization, if enabled.*/
|
||||
#if CH_CFG_USE_HEAP == TRUE
|
||||
_heap_init();
|
||||
|
|
|
@ -89,6 +89,7 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 17.6.3 ***
|
||||
- NIL: Fixed core and Heap allocators not functional in NIL (bug #902).
|
||||
- HAL: Fixed function uartSendFullTimeout() failing on STM32 USARTv1 and
|
||||
v2 drivers (bug #901).
|
||||
- HAL: Fixed broken I2C fallback driver (bug #900).
|
||||
|
|
Loading…
Reference in New Issue