19 lines
330 B
C
19 lines
330 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2017-08-25 LongfeiMa the first version for stm32h7xx
|
|
*/
|
|
#ifndef __DRV_MPU_H__
|
|
#define __DRV_MPU_H__
|
|
|
|
|
|
/* Initialize Cortex M MPU */
|
|
int mpu_init(void);
|
|
|
|
|
|
#endif
|