kopia lustrzana https://github.com/espressif/esp-idf
fix typo for heap cap free size
rodzic
d2bd9cccd8
commit
ae8a0bbf56
|
@ -24,11 +24,11 @@ extern "C" {
|
||||||
/* Please use heap_caps_malloc() instead of this function */
|
/* Please use heap_caps_malloc() instead of this function */
|
||||||
void *pvPortMallocCaps(size_t xWantedSize, uint32_t caps) asm("heap_caps_malloc") __attribute__((deprecated));
|
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 */
|
/* Please use heap_caps_get_minimum_free_size() instead of this function */
|
||||||
size_t xPortGetMinimumEverFreeHeapSizeCaps( uint32_t caps ) asm("heap_caps_get_minimum_free_heap_size") __attribute__((deprecated));
|
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 */
|
/* 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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue