Skip to content

Commit b0ea9e0

Browse files
authored
Merge pull request aws#2515 from aws/aggarg/st_ggd_build_failure
Fix GGD tests build failure for ST
2 parents fb2ac3c + 7f97452 commit b0ea9e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vendors/st/boards/stm32l475_discovery/aws_tests/application_code/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ int iMainRand32( void )
616616
static void prvInitializeHeap( void )
617617
{
618618
static uint8_t ucHeap1[ configTOTAL_HEAP_SIZE ];
619-
static uint8_t ucHeap2[ 10 * 1024 ] __attribute__( ( section( ".freertos_heap2" ) ) );
619+
static uint8_t ucHeap2[ 12 * 1024 ] __attribute__( ( section( ".freertos_heap2" ) ) );
620620

621621
HeapRegion_t xHeapRegions[] =
622622
{

vendors/st/boards/stm32l475_discovery/aws_tests/config_files/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5656
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
5757
#define configMAX_PRIORITIES ( 7 )
5858
#define configMINIMAL_STACK_SIZE ( ( uint16_t ) 256 )
59-
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 70 * 1024 ) )
59+
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 68 * 1024 ) )
6060
#define configMAX_TASK_NAME_LEN ( 16 )
6161
#define configUSE_TRACE_FACILITY 1
6262
#define configUSE_16_BIT_TICKS 0

0 commit comments

Comments
 (0)