Skip to content

Commit 35736f5

Browse files
author
Roberto Spelta
committed
removed memory allocation
1 parent 7af6e88 commit 35736f5

File tree

2 files changed

+1
-171
lines changed
  • features/nanostack/FEATURE_NANOSTACK/mbed-mesh-api/source
  • targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_SILICA_SENSOR_NODE/device/TOOLCHAIN_GCC_ARM

2 files changed

+1
-171
lines changed

features/nanostack/FEATURE_NANOSTACK/mbed-mesh-api/source/mesh_system.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
/* Heap for NanoStack */
3333
#if !MBED_CONF_MBED_MESH_API_USE_MALLOC_FOR_HEAP
34-
static uint8_t app_stack_heap[MBED_CONF_MBED_MESH_API_HEAP_SIZE + 1] __attribute__(( section( "mesh_heap") ));
34+
static uint8_t app_stack_heap[MBED_CONF_MBED_MESH_API_HEAP_SIZE + 1];
3535
#else
3636
static uint8_t *app_stack_heap;
3737
#endif

targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L476xG/TARGET_SILICA_SENSOR_NODE/device/TOOLCHAIN_GCC_ARM/STM32L476XX.ld

Lines changed: 0 additions & 170 deletions
This file was deleted.

0 commit comments

Comments
 (0)