aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F37x/USB_CDC
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-22 17:56:36 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-22 17:56:36 +0000
commitc1648e6ecf1f9fc287432c7e7ee4dec2e2d965ac (patch)
treeecf81275b71db26b7972405701c0146acf5deb73 /testhal/STM32/STM32F37x/USB_CDC
parent8f8502fade6ec1b720d69f8462e96614dd6f6593 (diff)
downloadChibiOS-c1648e6ecf1f9fc287432c7e7ee4dec2e2d965ac.tar.gz
ChibiOS-c1648e6ecf1f9fc287432c7e7ee4dec2e2d965ac.tar.bz2
ChibiOS-c1648e6ecf1f9fc287432c7e7ee4dec2e2d965ac.zip
RT. Changed API call chCoreStatus() -> chCoreGetStatusX()
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7524 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F37x/USB_CDC')
-rw-r--r--testhal/STM32/STM32F37x/USB_CDC/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F37x/USB_CDC/main.c b/testhal/STM32/STM32F37x/USB_CDC/main.c
index fadfc9092..b7f65ea3f 100644
--- a/testhal/STM32/STM32F37x/USB_CDC/main.c
+++ b/testhal/STM32/STM32F37x/USB_CDC/main.c
@@ -350,7 +350,7 @@ static void cmd_mem(BaseSequentialStream *chp, int argc, char *argv[]) {
return;
}
n = chHeapStatus(NULL, &size);
- chprintf(chp, "core free memory : %u bytes\r\n", chCoreStatus());
+ chprintf(chp, "core free memory : %u bytes\r\n", chCoreGetStatusX());
chprintf(chp, "heap fragments : %u\r\n", n);
chprintf(chp, "heap free total : %u bytes\r\n", size);
}