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:
Giovanni Di Sirio 2017-11-05 11:46:07 +00:00
parent 4cfd7100f9
commit 0b0943df7e
2 changed files with 6 additions and 0 deletions

View File

@ -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();

View File

@ -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).