Another regression because chCoreGetStatusX() change.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15096 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-11-16 16:13:54 +00:00
parent 571c23742a
commit 7fc46705c1
1 changed files with 3 additions and 3 deletions

View File

@ -463,13 +463,13 @@ namespace chibios_rt {
/** /**
* @brief Core memory status. * @brief Core memory status.
* *
* @return The size, in bytes, of the free core memory. * @param[in] mrp Memory region representing available core space.
* *
* @xclass * @xclass
*/ */
static size_t getStatusX(void) { static void getStatusX(memory_region_t *mrp) {
return chCoreGetStatusX(); chCoreGetStatusX(mrp);
} }
}; };
#endif /* CH_CFG_USE_MEMCORE == TRUE */ #endif /* CH_CFG_USE_MEMCORE == TRUE */