Skip to content

Commit 0e1d8f4

Browse files
authored
Updated README.md
Fixed item not displayed correctly
1 parent 3e03c7f commit 0e1d8f4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This is the portable code of MRTOS for the ARM Cortex M0+ platform. To use this
44
platform, please see [the main mRTOS repository](https://github.com/jdoe95/mrtos).
55

66
The portable code uses the following interrupts:
7-
* SVCall, ``isr_svc``, used for loading the first thread
8-
* SysTick, ``isr_systick``, used for generating heart beat
9-
* PendSV, ``isr_pendsv``, implemented as the context switcher
7+
* SVCall, ``isr_svc``, used for loading the first thread
8+
* SysTick, ``isr_systick``, used for generating heart beat
9+
* PendSV, ``isr_pendsv``, implemented as the context switcher
1010

1111
The portable code does not configure the SYSTICK timer. The configuration of
1212
SYSTICK must be set before os_start(), and __SYSTICK must be disabled__. When
@@ -17,7 +17,7 @@ Use the nested version provided by the operating system instead (``os_enter_crit
1717
replace the macros in CMSIS, too, if it's being used. Manipulating interrupts directly in the application can really mess up the system's shared variable access locks.
1818

1919
## Features
20-
* Low power mode (when idle)
20+
* Low power mode (when idle)
2121

2222
## Settings
2323

@@ -96,4 +96,4 @@ int main(void)
9696
return 0;
9797
}
9898

99-
```
99+
```

0 commit comments

Comments
 (0)