mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-23 22:07:29 +08:00
9 lines
130 B
C
9 lines
130 B
C
|
#ifndef __DRV_MPU_H
|
||
|
#define __DRV_MPU_H
|
||
|
|
||
|
/* Initialize Cortex M4 MPU */
|
||
|
void mpu_init(void);
|
||
|
void mpu_enable(int enable);
|
||
|
|
||
|
#endif
|