summaryrefslogtreecommitdiff
path: root/ports/cortex_m3/ac6/src
diff options
context:
space:
mode:
Diffstat (limited to 'ports/cortex_m3/ac6/src')
-rw-r--r--ports/cortex_m3/ac6/src/tx_misra.S2
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_context_restore.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_context_save.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_interrupt_control.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_interrupt_disable.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_interrupt_restore.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_schedule.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_stack_build.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_thread_system_return.S6
-rw-r--r--ports/cortex_m3/ac6/src/tx_timer_interrupt.S6
10 files changed, 47 insertions, 9 deletions
diff --git a/ports/cortex_m3/ac6/src/tx_misra.S b/ports/cortex_m3/ac6/src/tx_misra.S
index 155512be..a11bcca9 100644
--- a/ports/cortex_m3/ac6/src/tx_misra.S
+++ b/ports/cortex_m3/ac6/src/tx_misra.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
#define SHT_PROGBITS 0x1
.global __aeabi_memset
diff --git a/ports/cortex_m3/ac6/src/tx_thread_context_restore.S b/ports/cortex_m3/ac6/src/tx_thread_context_restore.S
index 9dbe0204..6240faef 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_context_restore.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_context_restore.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
#if (defined(TX_ENABLE_EXECUTION_CHANGE_NOTIFY) || defined(TX_EXECUTION_PROFILE_ENABLE))
.global _tx_execution_isr_exit
#endif
@@ -32,7 +34,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_context_restore Cortex-M3/AC6 */
-/* 6.1.7 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -63,6 +65,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_context_restore(VOID)
diff --git a/ports/cortex_m3/ac6/src/tx_thread_context_save.S b/ports/cortex_m3/ac6/src/tx_thread_context_save.S
index 5061b512..4238df92 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_context_save.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_context_save.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.text
.align 4
.syntax unified
@@ -31,7 +33,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_context_save Cortex-M3/AC6 */
-/* 6.1.7 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -62,6 +64,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_context_save(VOID)
diff --git a/ports/cortex_m3/ac6/src/tx_thread_interrupt_control.S b/ports/cortex_m3/ac6/src/tx_thread_interrupt_control.S
index 1f6a3f11..fb6a0379 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_interrupt_control.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_interrupt_control.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.text 32
.align 4
.syntax unified
@@ -28,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_control Cortex-M3/AC6 */
-/* 6.1.7 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -59,6 +61,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_interrupt_control(UINT new_posture)
diff --git a/ports/cortex_m3/ac6/src/tx_thread_interrupt_disable.S b/ports/cortex_m3/ac6/src/tx_thread_interrupt_disable.S
index 93159485..aa3c2f06 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_interrupt_disable.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_interrupt_disable.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.text 32
.align 4
.syntax unified
@@ -28,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_disable Cortex-M3/AC6 */
-/* 6.1.7 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -59,6 +61,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_interrupt_disable(VOID)
diff --git a/ports/cortex_m3/ac6/src/tx_thread_interrupt_restore.S b/ports/cortex_m3/ac6/src/tx_thread_interrupt_restore.S
index c060ec5f..40d707d9 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_interrupt_restore.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_interrupt_restore.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.text 32
.align 4
.syntax unified
@@ -28,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_restore Cortex-M3/AC6 */
-/* 6.1.7 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -59,6 +61,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_interrupt_restore(UINT previous_posture)
diff --git a/ports/cortex_m3/ac6/src/tx_thread_schedule.S b/ports/cortex_m3/ac6/src/tx_thread_schedule.S
index 2dd3922d..742484bf 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_schedule.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_schedule.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.global _tx_thread_current_ptr
.global _tx_thread_execute_ptr
.global _tx_timer_time_slice
@@ -39,7 +41,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_schedule Cortex-M3/AC6 */
-/* 6.1.11 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -74,6 +76,8 @@
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
/* 04-25-2022 Scott Larson Added BASEPRI support, */
/* resulting in version 6.1.11 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_schedule(VOID)
diff --git a/ports/cortex_m3/ac6/src/tx_thread_stack_build.S b/ports/cortex_m3/ac6/src/tx_thread_stack_build.S
index 70aec7a7..17d50ac2 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_stack_build.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_stack_build.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.text
.align 4
.syntax unified
@@ -28,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_stack_build Cortex-M3/AC6 */
-/* 6.1.7 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -61,6 +63,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_stack_build(TX_THREAD *thread_ptr, VOID (*function_ptr)(VOID))
diff --git a/ports/cortex_m3/ac6/src/tx_thread_system_return.S b/ports/cortex_m3/ac6/src/tx_thread_system_return.S
index 3a24f007..a83abf4f 100644
--- a/ports/cortex_m3/ac6/src/tx_thread_system_return.S
+++ b/ports/cortex_m3/ac6/src/tx_thread_system_return.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.text 32
.align 4
.syntax unified
@@ -28,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_system_return Cortex-M3/AC6 */
-/* 6.1.7 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -61,6 +63,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 06-02-2021 Scott Larson Initial Version 6.1.7 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_system_return(VOID)
diff --git a/ports/cortex_m3/ac6/src/tx_timer_interrupt.S b/ports/cortex_m3/ac6/src/tx_timer_interrupt.S
index 1e61de61..9059d0d0 100644
--- a/ports/cortex_m3/ac6/src/tx_timer_interrupt.S
+++ b/ports/cortex_m3/ac6/src/tx_timer_interrupt.S
@@ -20,6 +20,8 @@
/**************************************************************************/
/**************************************************************************/
+#include "tx_user.h"
+
.global _tx_timer_time_slice
.global _tx_timer_system_clock
.global _tx_timer_current_ptr
@@ -38,7 +40,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_timer_interrupt Cortex-M3/AC6 */
-/* 6.1.10 */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -75,6 +77,8 @@
/* 01-31-2022 Scott Larson Modified comment(s), added */
/* TX_NO_TIMER support, */
/* resulting in version 6.1.10 */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_timer_interrupt(VOID)