C Microkernel Realtime eXecutive
Realtime Operating System for Cortex-M based microcontrollers
 
Loading...
Searching...
No Matches
mpu.h
1#pragma once
2
3#include <conf/kernel.h>
4#include <stdint.h>
5
6/*
7 * Stub MPU definitions required by the kernel headers.
8 * Memory protection is not implemented by this HAL.
9 */
10
11struct MPU_Registers {
12 uint32_t REG1;
13 uint32_t REG2;
14};
15
17
#define MPU_STATE_SIZE
How many MPU regions are saved per thread.
Definition kernel.h:17
Definition mpu.h:3
ARMv6M/ARMv7M MPU registers for one region (base + size model)
Definition mpu.h:26
uint32_t REG2
Definition mpu.h:13
uint32_t REG1
Definition mpu.h:12