Skip to content

Commit 71cc95e

Browse files
Include tx_user.h in cortex_m33/55/85 IAR port (#267)
1 parent 361590d commit 71cc95e

File tree

56 files changed

+224
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+224
-0
lines changed

ports/cortex_m33/iar/src/tx_initialize_low_level.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
EXTERN _tx_thread_system_stack_ptr
2428
EXTERN _tx_initialize_unused_memory
2529
EXTERN _tx_timer_interrupt

ports/cortex_m33/iar/src/tx_misra.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
#define SHT_PROGBITS 0x1
2428

2529
EXTERN __aeabi_memset

ports/cortex_m33/iar/src/tx_thread_context_restore.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
EXTERN _tx_execution_isr_exit
2428
SECTION `.text`:CODE:NOROOT(2)
2529
THUMB

ports/cortex_m33/iar/src/tx_thread_context_save.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
EXTERN _tx_execution_isr_enter
2428
SECTION `.text`:CODE:NOROOT(2)
2529
THUMB

ports/cortex_m33/iar/src/tx_thread_interrupt_control.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
SECTION `.text`:CODE:NOROOT(2)
2428
THUMB
2529
/**************************************************************************/

ports/cortex_m33/iar/src/tx_thread_interrupt_disable.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
SECTION `.text`:CODE:NOROOT(2)
2428
THUMB
2529
/**************************************************************************/

ports/cortex_m33/iar/src/tx_thread_interrupt_restore.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
SECTION `.text`:CODE:NOROOT(2)
2428
THUMB
2529
/**************************************************************************/

ports/cortex_m33/iar/src/tx_thread_schedule.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
EXTERN _tx_thread_current_ptr
2428
EXTERN _tx_thread_execute_ptr
2529
EXTERN _tx_timer_time_slice

ports/cortex_m33/iar/src/tx_thread_secure_stack_allocate.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
SECTION `.text`:CODE:NOROOT(2)
2428
THUMB
2529
/**************************************************************************/

ports/cortex_m33/iar/src/tx_thread_secure_stack_free.s

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**************************************************************************/
2121
/**************************************************************************/
2222

23+
#ifdef TX_INCLUDE_USER_DEFINE_FILE
24+
#include "tx_user.h"
25+
#endif
26+
2327
SECTION `.text`:CODE:NOROOT(2)
2428
THUMB
2529
/**************************************************************************/

0 commit comments

Comments
 (0)