1/**
2\defgroup mve_functions  MVE Functions
3\brief Functions that relate to the MVE (Cortex-M Vector Extensions) Unit.
4\details
5Some Cortex-M processors include an optional MVE unit.
6
7@{
8*/
9
10/**
11  \brief   Get the MVE type.
12  \details Returns the MVE type.
13  \returns
14   - \b  0: No Vector Extension (MVE)
15   - \b  1: Integer Vector Extension (MVE-I)
16   - \b  2: Floating-point Vector Extension (MVE-F)
17 */
18__STATIC_INLINE uint32_t SCB_GetMVEType(void);
19
20/**
21 @}
22*/
23
24
25