File tree 1 file changed +15
-4
lines changed
1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
- #![ allow( non_snake_case) ]
1
+ //! CMSIS: Cortex Microcontroller Software Interface Standard
2
+ //!
3
+ //! The version 5 of the standard can be found at:
4
+ //!
5
+ //! http://arm-software.github.io/CMSIS_5/Core/html/index.html
6
+ //!
7
+ //! The API reference of the standard can be found at:
8
+ //!
9
+ //! - Core function access -- http://arm-software.github.io/CMSIS_5/Core/html/group__Core__Register__gr.html
10
+ //! - Intrinsic functions for CPU instructions -- http://arm-software.github.io/CMSIS_5/Core/html/group__intrinsic__CPU__gr.html
11
+ //!
12
+ //! The reference C implementation used as the base of this Rust port can be found at
13
+ //!
14
+ //! https://github.com/ARM-software/CMSIS_5/blob/5.3.0/CMSIS/Core/Include/cmsis_gcc.h
2
15
3
- /// Extracted from [CMSIS 5]'s CMSIS/Core/Include/cmsis_gcc.h
4
- ///
5
- /// [CMSIS 5]: https://github.com/ARM-software/CMSIS_5
16
+ #![ allow( non_snake_case) ]
6
17
7
18
/* Core function access */
8
19
You can’t perform that action at this time.
0 commit comments