]> granicus.if.org Git - esp-idf/commitdiff
fix typo for heap cap free size
authorKewal <kewal@espressif.com>
Wed, 13 Dec 2017 14:52:48 +0000 (22:52 +0800)
committerkewal shah <kewal@espressif.com>
Thu, 14 Dec 2017 05:09:26 +0000 (10:39 +0530)
components/heap/include/esp_heap_alloc_caps.h

index f92e92e352a9e6ffedf1635f640517933cf50772..7e6e25d6a85214d5287152d921f7eaa154359565 100644 (file)
@@ -24,11 +24,11 @@ extern "C" {
 /* Please use heap_caps_malloc() instead of this function */
 void *pvPortMallocCaps(size_t xWantedSize, uint32_t caps) asm("heap_caps_malloc") __attribute__((deprecated));
 
-/* Please use heap_caps_get_minimum_free_heap_size() instead of this function */
-size_t xPortGetMinimumEverFreeHeapSizeCaps( uint32_t caps ) asm("heap_caps_get_minimum_free_heap_size") __attribute__((deprecated));
+/* Please use heap_caps_get_minimum_free_size() instead of this function */
+size_t xPortGetMinimumEverFreeHeapSizeCaps( uint32_t caps ) asm("heap_caps_get_minimum_free_size") __attribute__((deprecated));
 
 /* Please use heap_caps_get_free_size() instead of this function */
-size_t xPortGetFreeHeapSizeCaps( uint32_t caps ) asm("heap_caps_get_free_heap_size") __attribute__((deprecated));
+size_t xPortGetFreeHeapSizeCaps( uint32_t caps ) asm("heap_caps_get_free_size") __attribute__((deprecated));
 
 #ifdef __cplusplus
 }