C Microkernel Realtime eXecutive
Realtime Operating System for Cortex-M based microcontrollers
 
Loading...
Searching...
No Matches
mpu.h
1
13#pragma once
14
15#include <stdint.h>
16#include <conf/kernel.h>
17
32
MPU_Flags
MPU region access rights.
Definition mpu.h:20
@ MPU_NONE
Region cannot be accesses. Any attempt to access addresses from this region will result in hard fault...
Definition mpu.h:22
@ MPU_R
Region can be read. Attempt to write into region, or execute out of it will result in hard fault.
Definition mpu.h:28
@ MPU_RWX
Region can be read, written and executed. No attempt to access region can result in hard fault.
Definition mpu.h:26
@ MPU_RX
Region can be read and executed. Attempt to write will result in hard fault.
Definition mpu.h:24
@ MPU_RW
Region can be read and written but cannot be executed. Attempt to execute code will result in hard fa...
Definition mpu.h:30