You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/kernal/configuration.h
+25-1Lines changed: 25 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,31 @@ extern "C" {
78
78
#defineKERNAL_THREAD_STACK_SIZE (1024u)
79
79
#endif
80
80
81
+
/* Configuration of the Cortex-M Processor and Core Peripherals.
82
+
* You should check the chip header file or datasheet to check the following declaration symbol that support ARM Cortex-M Processor and Core Peripherals, and put it here.
83
+
* It looks like this.
84
+
*
85
+
* #define __SAUREGION_PRESENT (1u) // SAU regions present
86
+
* #define __MPU_PRESENT (1u) // MPU present
87
+
* #define __VTOR_PRESENT (1u) // VTOR present
88
+
* #define __NVIC_PRIO_BITS (4u) // Number of Bits used for Priority Levels
89
+
* #define __Vendor_SysTickConfig (0u) // Set to 1 if different SysTick Config is used
Copy file name to clipboardExpand all lines: include/template/atos_configuration.h
+39-9Lines changed: 39 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,37 @@ extern "C" {
22
22
* ARCH_ARM_CORTEX_CM33
23
23
* ARCH_ARM_CORTEX_CM7
24
24
**/
25
-
#defineARCH_ARM_CORTEX_CM4
25
+
#defineARCH_ARM_CORTEX_CM33
26
+
27
+
/* Configuration of the Cortex-M Processor and Core Peripherals.
28
+
* You should check the chip header file or datasheet to check the following declaration symbol that support ARM Cortex-M Processor and Core Peripherals, and put it here.
29
+
* It looks like this.
30
+
*
31
+
* #define __SAUREGION_PRESENT (1u) // SAU regions present
32
+
* #define __MPU_PRESENT (1u) // MPU present
33
+
* #define __VTOR_PRESENT (1u) // VTOR present
34
+
* #define __NVIC_PRIO_BITS (4u) // Number of Bits used for Priority Levels
35
+
* #define __Vendor_SysTickConfig (0u) // Set to 1 if different SysTick Config is used
Copy file name to clipboardExpand all lines: include/template/native_gcc/atos_configuration.h
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,36 @@ extern "C" {
25
25
**/
26
26
#defineARCH_NATIVE_GCC
27
27
28
+
/* Configuration of the Cortex-M Processor and Core Peripherals.
29
+
* You should check the chip header file or datasheet to check the following declaration symbol that support ARM Cortex-M Processor and Core Peripherals, and put it here.
30
+
* It looks like this.
31
+
*
32
+
* #define __SAUREGION_PRESENT (1u) // SAU regions present
33
+
* #define __MPU_PRESENT (1u) // MPU present
34
+
* #define __VTOR_PRESENT (1u) // VTOR present
35
+
* #define __NVIC_PRIO_BITS (4u) // Number of Bits used for Priority Levels
36
+
* #define __Vendor_SysTickConfig (0u) // Set to 1 if different SysTick Config is used
0 commit comments