Skip to content

Commit b35f452

Browse files
Blargiancpq
authored andcommitted
Update README.md
1 parent 4fb94f4 commit b35f452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +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-
GPIO bank, and lower byte indicates pin number (see the [appendix](##Appendix) for further explanation of the functions below):
260+
GPIO bank, and lower byte indicates pin number (see the [appendix](### PIN function) for further explanation of the functions below):
261261

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

0 commit comments

Comments
 (0)