Skip to content

Commit 83a48d8

Browse files
Blargiancpq
authored andcommitted
Update README.md
1 parent aaee07a commit 83a48d8

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,7 @@ GPIOA is at address 0x40020000, GPIOB is at 0x40020400, and so on:
257257

258258
We can create pin numbering that includes the bank and the pin number.
259259
To do that, we use 2-byte `uint16_t` value, where upper byte indicates
260-
<<<<<<< HEAD
261-
GPIO bank, and lower byte indicates pin number (see the [appendix](#pin-function) for further explanation of the functions below):
262-
=======
263-
GPIO bank, and lower byte indicates pin number (see the [appendix](#Appendix) for further explanation ):
264-
>>>>>>> 43d1ea3 (Move changes inline)
260+
GPIO bank, and lower byte indicates pin number:
265261

266262
```c
267263
#define PIN(bank, num) ((((bank) - 'A') << 8) | (num))

0 commit comments

Comments
 (0)