Skip to content

Commit e1652cb

Browse files
committed
Final touch-ups before making repository public?
1 parent 6a3bf14 commit e1652cb

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,14 @@ On ARM, FreeRTOS ISRs run on the dedicated MSP stack, allocated at top of RAM. T
4646
To use port_DRN.c, exclude FreeRTOS amazon-freertos/freertos_kernel/portable/GCC/ARM_CM4F/port.c from your build and add port_DRN.c. Ensure you've got required space allocation in your LD, then configure your MSP stack size and enable MSP checking by adding to your FreeRTOSconfig.h:
4747

4848
// DRN ISR (MSP) stack initialization and checking
49+
#if !defined(EXTERNC)
50+
#if defined(__cplusplus)
51+
#define EXTERNC extern "C"
52+
#else
53+
#define EXTERNC extern
54+
#endif
55+
#endif
4956
#define configISR_STACK_SIZE_WORDS (0x100) // in WORDS, must be valid constant for GCC assembler
5057
#define configSUPPORT_ISR_STACK_CHECK 1 // DRN initialize and check ISR stack
51-
UBaseType_t xUnusedISRstackWords( void ); // check unused amount at runtime
52-
58+
EXTERNC unsigned long /*UBaseType_t*/ xUnusedISRstackWords( void ); // check unused amount at runtime
5359
# ToDo: Add The Other Tools...

heap_useNewlib_NXP.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
if (heap_end == NULL)
118118
heap_end = &end;
119119
prev_heap_end = heap_end;
120-
if (heap_end + incr > &heap_limit) // of course, always true for FreeRTOS task stacks
120+
if (heap_end + incr > &heap_limit) // Fails here: always true for FreeRTOS task stacks
121121
{
122122
errno = ENOMEM; // ...so first call inside a FreeRTOS task lands here
123123
return (caddr_t)-1;

heap_useNewlib_ST.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
char *prev_heap_end;
103103
if (heap_end == 0) heap_end = &end;
104104
prev_heap_end = heap_end;
105-
if (heap_end + incr > stack_ptr) // of course, always true for FreeRTOS task stacks
105+
if (heap_end + incr > stack_ptr) // Fails here: always true for FreeRTOS task stacks
106106
{
107107
errno = ENOMEM; // ...so first call inside a FreeRTOS task lands here
108108
return (caddr_t) -1;

port_DRN.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Includes DRN additions for MSP (ISR) stack-use checking
2+
13
/*
24
* FreeRTOS Kernel V10.2.1
35
* Copyright (C) 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.

0 commit comments

Comments
 (0)