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:
parent
571c23742a
commit
7fc46705c1
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue