Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Core_CortexM0.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef CORE_CORTEXM0_H
4#define CORE_CORTEXM0_H
5
8
9// Reference: Cortex-M0 Devices Generic User Guide DUI0497A Table 4-10
10// System Control Block (SCB) register structure
11typedef struct {
12 // Offset: 0x00 CPU ID Base Register
13 uint32_t volatile CPUID;
14 // Offset: 0x04 Interrupt Control State Register
15 uint32_t volatile ICSR;
16 // Offset: 0x08 Vector Table Offset Register
17 uint32_t volatile VTOR;
18 // Offset: 0x0C Application Interrupt / Reset Control Register
19 uint32_t volatile AIRCR;
20 // Offset: 0x10 System Control Register
21 uint32_t volatile SCR;
22 // Offset: 0x14 Configuration Control Register
23 uint32_t volatile CCR;
24 // Offset: 0x18 System Handlers Priority Registers (4-7, 8-11, 12-15)
25 uint8_t volatile SHPR[3];
26} SCB_Type;
27// SCB configuration struct
28#define SCB ((SCB_Type*)SCB_BASE)
29
30// Bit definition for SCB_ICSR register
31// Active ISR number field
32#define SCB_ICSR_VECTACTIVE ((uint32_t)0x0000001F)
33// Pending ISR number field
34#define SCB_ICSR_VECTPENDING ((uint32_t)0x0003F000)
35// Interrupt pending flag
36#define SCB_ICSR_ISRPENDING ((uint32_t)0x00400000)
37// Clear pending SysTick bit
38#define SCB_ICSR_PENDSTCLR ((uint32_t)0x02000000)
39// Set pending SysTick bit
40#define SCB_ICSR_PENDSTSET ((uint32_t)0x04000000)
41// Clear pending pendSV bit
42#define SCB_ICSR_PENDSVCLR ((uint32_t)0x08000000)
43// Set pending pendSV bit
44#define SCB_ICSR_PENDSVSET ((uint32_t)0x10000000)
45// Set pending NMI bit
46#define SCB_ICSR_NMIPENDSET ((uint32_t)0x80000000)
47
48// Bit definition for SCB_SCR register
49// Sleep deep bit
50#define SCB_SCR_SLEEPDEEP ((uint8_t)0x04)
51
52// SCB Application Interrupt and Reset Control Register Definitions
53// SCB AIRCR: VECTKEY Position
54#define SCB_AIRCR_VECTKEY_Pos 16
55// SCB AIRCR: VECTKEY Mask
56#define SCB_AIRCR_VECTKEY_Mask (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos)
57// SCB AIRCR: SYSRESETREQ Position
58#define SCB_AIRCR_SYSRESETREQ_Pos 2U
59// SCB AIRCR: SYSRESETREQ Mask
60#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos)
61
62#endif // CORE_CORTEXM0_H
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62
uint32_t volatile CCR
uint32_t volatile AIRCR
uint32_t volatile SCR
uint32_t volatile CPUID
uint32_t volatile VTOR
uint32_t volatile ICSR