Skip to content

Commit a1b1751

Browse files
iriark01Patater
authored andcommitted
INTRO: Make headings bigger
Update heading levels bigger to match other headings on the web site.
1 parent acba03f commit a1b1751

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/lib/INTRO.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### uVisor
1+
## uVisor
22

33
The uVisor is a self-contained software hypervisor that creates independent secure domains on ARM Cortex®-M3 and Cortex®-M4 microcontrollers. It increases resilience against malware and protects secrets from leaking even among different modules of the same application. You can find a [high-level overview here](http://www.slideshare.net/FoolsDelight/practical-realtime-operating-system-security-for-the-masses) ([Download PDF](https://github.com/ARMmbed/uvisor/raw/docs/uVisorSecurity-TechCon2016.pdf)).
44

@@ -12,7 +12,7 @@ When the uVisor is enabled, all NVIC APIs are rerouted to the corresponding uVis
1212

1313
Although this behavior is different from that of the original NVIC, it is backward compatible. Legacy code (such as a device HAL) still works after uVisor is enabled.
1414

15-
#### Usage
15+
### Usage
1616

1717
1. Include uVisor library in your application.
1818
1. Specify capabilities in mandatory access control list.
@@ -22,20 +22,20 @@ Although this behavior is different from that of the original NVIC, it is backwa
2222

2323
For detailed usage guides and best practices, look [here](https://github.com/ARMmbed/uvisor/blob/master/docs/README.md)
2424

25-
#### API
25+
### API
2626

2727
[https://github.com/ARMmbed/uvisor/blob/master/docs/lib/API.md](https://github.com/ARMmbed/uvisor/blob/master/docs/lib/API.md)
2828

29-
#### Example
29+
### Examples
3030

3131
This is a simple example to show how to write a uVisor-secured threaded application with IRQ support. One LED blinks periodically from the public box main thread. A secure box exclusively owns the second LED, which toggles you press the user button.
3232

33-
##### main.cpp
33+
#### main.cpp
3434
[![View code](https://www.mbed.com/embed/?url=https://github.com/ARMmbed/mbed-os-example-uvisor)](https://github.com/ARMmbed/mbed-os-example-uvisor/blob/master/source/main.cpp)
3535

36-
##### main-hw.h
36+
#### main-hw.h
3737
[![View code](https://www.mbed.com/embed/?url=https://github.com/ARMmbed/mbed-os-example-uvisor)](https://github.com/ARMmbed/mbed-os-example-uvisor/blob/master/source/main-hw.h)
3838

39-
##### led.cpp
39+
#### led.cpp
4040

4141
[![View code](https://www.mbed.com/embed/?url=https://github.com/ARMmbed/mbed-os-example-uvisor)](https://github.com/ARMmbed/mbed-os-example-uvisor/blob/master/source/led.cpp)

0 commit comments

Comments
 (0)