Skip to content

Commit dd1fce8

Browse files
committed
📝 update readme
1 parent c77d6a8 commit dd1fce8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

baremetal/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Connect the board with host through USB to TTL converter (FTDI board in our case
1919
| PA10 | Tx |
2020
| Gnd | Gnd |
2121

22-
![Connection diagram for USART1](https://github.com/csrohit/bluepill-baremetal-projects/blob/main/uart-polling/resources/label.png "Pin connection diagram for usart1")
22+
![Connection diagram for USART1](https://github.com/csrohit/bluepill-uart/blob/main/docs/label.png "Pin connection diagram for usart1")
2323

2424

2525
## Project Structure
@@ -84,7 +84,7 @@ USART1->CR1 = USART_CR1_TE | USART_CR1_RE | USART_CR1_RXNEIE | USART_CR1_UE;
8484
NVIC_EnableIRQ(USART1_IRQn);
8585
```
8686
87-
![Control Flow Diagram](https://github.com/csrohit/bluepill-baremetal-projects/blob/main/uart-polling/resources/flow.png "Control flow diagram for usart")
87+
![Control Flow Diagram](https://github.com/csrohit/bluepill-uart/blob/main/docs/github-cover.png "Control flow diagram for usart")
8888
8989
### Function description
9090
@@ -145,15 +145,15 @@ Running the project is super easy. Just clone, build, and flash.
145145
1. Using https
146146

147147
```bash
148-
git clone git@github.com:csrohit/bluepill-baremetal-projects.git
149-
cd bluepill-baremetal-projects/uart-polling
148+
git clone git@github.com:csrohit/bluepill-uart.git
149+
cd bluepill-uart/baremetal
150150
```
151151

152152
2. Using ssh
153153

154154
```bash
155-
git clone git@github.com:csrohit/bluepill-baremetal-projects.git
156-
cd bluepill-baremetal-projects/uart-polling
155+
git clone git@github.com:csrohit/bluepill-uart.git
156+
cd bluepill-uart/baremetal
157157
```
158158

159159
### Configuration
@@ -189,7 +189,7 @@ make flash
189189

190190
The following output should be available on serial monitor.
191191

192-
![Output on Serial monitor](https://github.com/csrohit/bluepill-baremetal-projects/blob/main/uart-polling/resources/output.jpg "Serial messages printed on monitor")
192+
![Output on Serial monitor](https://github.com/csrohit/bluepill-uart/blob/main/docs/output.jpg "Serial messages printed on monitor")
193193

194194

195195
## Debug

0 commit comments

Comments
 (0)