mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 04:25:32 +00:00
Make internal function static
This commit is contained in:
@@ -249,7 +249,7 @@ void heap_alloc_caps_init() {
|
|||||||
have such a block in front of it, work. We may do this later, if/when there is demand for it. For now, a simple
|
have such a block in front of it, work. We may do this later, if/when there is demand for it. For now, a simple
|
||||||
pointer is used.
|
pointer is used.
|
||||||
*/
|
*/
|
||||||
void *dram_alloc_to_iram_addr(void *addr, size_t len)
|
static void *dram_alloc_to_iram_addr(void *addr, size_t len)
|
||||||
{
|
{
|
||||||
uint32_t dstart=(int)addr; //First word
|
uint32_t dstart=(int)addr; //First word
|
||||||
uint32_t dend=((int)addr)+len-4; //Last word
|
uint32_t dend=((int)addr)+len-4; //Last word
|
||||||
@@ -385,8 +385,3 @@ size_t xPortGetMinimumEverFreeHeapSize( void )
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user