File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ the tooling and the development process.
7
7
8
8
[ LM3S6965 ] : http://www.ti.com/product/LM3S6965
9
9
10
- ** IMPORTANT**
10
+ ** IMPORTANT**
11
11
We'll use the name "app" for the project name in this tutorial.
12
12
Whenever you see the word "app" you should replace it with the name you selected
13
13
for your project. Or, you could also name your project "app" and avoid the
@@ -118,12 +118,12 @@ nightly.
118
118
the panicking behavior of the program. We will cover this in more detail in the
119
119
[ Panicking] ( panicking.md ) chapter of the book.
120
120
121
- [ ` #[entry] ` ] is an attribute provided by the [ ` cortex-m-rt ` ] crate that's used
121
+ [ ` #[entry] ` ] [ entry ] is an attribute provided by the [ ` cortex-m-rt ` ] crate that's used
122
122
to mark the entry point of the program. As we are not using the standard ` main `
123
123
interface we need another way to indicate the entry point of the program and
124
124
that'd be ` #[entry] ` .
125
125
126
- [ ` #[ entry] ` ] : https://docs.rs/cortex-m-rt-macros/latest/cortex_m_rt_macros/attr.entry.html
126
+ [ entry ] : https://docs.rs/cortex-m-rt-macros/latest/cortex_m_rt_macros/attr.entry.html
127
127
[ `cortex-m-rt` ] : https://crates.io/crates/cortex-m-rt
128
128
129
129
` fn main() -> ! ` . Our program will be the * only* process running on the target
You can’t perform that action at this time.
0 commit comments