1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-23 08:45:22 +03:00

add EspClass::getFreeHeap see #81

This commit is contained in:
Markus Sattler
2015-04-19 09:50:58 +02:00
parent b6ea1e45af
commit 8aa93b6bf6
2 changed files with 8 additions and 0 deletions

View File

@ -70,3 +70,10 @@ uint16_t EspClass::getVCC(void)
{
return system_get_vdd33();
}
uint32_t EspClass::getFreeHeap(void)
{
return system_get_free_heap_size();
}