1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 07:51:19 +01:00

cpu/esp32: fix heap command output

The heap command output has to have an output format that is compatible with the test.
This commit is contained in:
Gunar Schorcht 2019-11-20 06:32:06 +01:00
parent 5a705762ee
commit 3ab5e3ad66

View File

@ -271,7 +271,7 @@ unsigned int IRAM get_free_heap_size (void)
void heap_stats(void)
{
printf("heap: %u (used %u free %u)\n", (unsigned)(&_eheap - &_sheap),
printf("heap: %u (used %u, free %u) [bytes]\n", (unsigned)(&_eheap - &_sheap),
&_eheap - &_sheap - get_free_heap_size(), get_free_heap_size());
}