2016-10-09 07:32:08 +00:00
|
|
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2017-05-03 08:03:28 +00:00
|
|
|
#pragma once
|
|
|
|
#warning "This header is deprecated, please use functions defined in esp_heap_caps.h instead."
|
|
|
|
#include "esp_heap_caps.h"
|
2016-10-09 07:32:08 +00:00
|
|
|
|
2017-05-31 09:20:17 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-05-03 08:03:28 +00:00
|
|
|
/* Deprecated FreeRTOS-style esp_heap_alloc_caps.h functions follow */
|
2017-04-28 04:08:58 +00:00
|
|
|
|
2017-05-03 08:03:28 +00:00
|
|
|
/* Please use heap_caps_malloc() instead of this function */
|
|
|
|
void *pvPortMallocCaps(size_t xWantedSize, uint32_t caps) asm("heap_caps_malloc") __attribute__((deprecated));
|
2016-10-09 07:32:08 +00:00
|
|
|
|
2017-12-13 14:52:48 +00:00
|
|
|
/* 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));
|
2016-10-09 07:32:08 +00:00
|
|
|
|
2017-05-10 07:19:00 +00:00
|
|
|
/* Please use heap_caps_get_free_size() instead of this function */
|
2017-12-13 14:52:48 +00:00
|
|
|
size_t xPortGetFreeHeapSizeCaps( uint32_t caps ) asm("heap_caps_get_free_size") __attribute__((deprecated));
|
2017-05-05 03:55:19 +00:00
|
|
|
|
2017-05-31 09:20:17 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|