diff options
| author | Scott Larson <[email protected]> | 2020-11-10 13:25:20 -0800 |
|---|---|---|
| committer | Scott Larson <[email protected]> | 2020-11-10 13:25:20 -0800 |
| commit | 9b050d00ed6e138fef2dd9fdcd421298a485d9d1 (patch) | |
| tree | d1c97b7ea29c5402677ab0578f1934ee9be0658a /ports_module/cortex-m4/iar/inc | |
| parent | 6773d468ae877ce36feda1c86842510fb33501a3 (diff) | |
patch release 6.1.2v6.1.2_rel
Diffstat (limited to 'ports_module/cortex-m4/iar/inc')
| -rw-r--r-- | ports_module/cortex-m4/iar/inc/txm_module_port.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/ports_module/cortex-m4/iar/inc/txm_module_port.h b/ports_module/cortex-m4/iar/inc/txm_module_port.h index 1ef45a55..5c58bef3 100644 --- a/ports_module/cortex-m4/iar/inc/txm_module_port.h +++ b/ports_module/cortex-m4/iar/inc/txm_module_port.h @@ -26,7 +26,7 @@ /* APPLICATION INTERFACE DEFINITION RELEASE */ /* */ /* txm_module_port.h Cortex-M4/MPU/IAR */ -/* 6.1 */ +/* 6.1.2 */ /* AUTHOR */ /* */ /* Scott Larson, Microsoft Corporation */ @@ -41,6 +41,9 @@ /* DATE NAME DESCRIPTION */ /* */ /* 09-30-2020 Scott Larson Initial Version 6.1 */ +/* 11-09-2020 Scott Larson Modified comment(s), */ +/* increase kernel stack size, */ +/* resulting in version 6.1.2 */ /* */ /**************************************************************************/ @@ -94,7 +97,7 @@ The following extensions must also be defined in tx_port.h: /* Define the kernel stack size for a module thread. */ #ifndef TXM_MODULE_KERNEL_STACK_SIZE -#define TXM_MODULE_KERNEL_STACK_SIZE 512 +#define TXM_MODULE_KERNEL_STACK_SIZE 768 #endif /* Define constants specific to the tools the module can be built with for this particular modules port. */ @@ -151,9 +154,9 @@ The following extensions must also be defined in tx_port.h: #define INLINE_DECLARE inline -/* Define the number of MPU entries assigned to the code and data sections. On Cortex-M parts, there can only be 7 total - entries, since ThreadX uses one for access to the kernel dispatch function. */ - +/* Define the number of MPU entries assigned to the code and data sections. + On Cortex-M4 parts, there are 8 total entries. ThreadX uses one for access + to the kernel entry function, thus 7 remain for code and data protection. */ #define TXM_MODULE_MANAGER_CODE_MPU_ENTRIES 4 #define TXM_MODULE_MANAGER_DATA_MPU_ENTRIES 3 #define TXM_MODULE_MANAGER_SHARED_MPU_INDEX 8 @@ -319,6 +322,6 @@ ULONG _txm_module_manager_region_size_get(ULONG block_size); #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Module Cortex-M4/MPU/IAR Version 6.1 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Module Cortex-M4/MPU/IAR Version 6.1.2 *"; #endif |
