Skip to content

Commit 6102bfb

Browse files
committed
fixup! doc/guides/porting-boards: fix reference link
1 parent 51c16b8 commit 6102bfb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/guides/advanced_tutorials/porting_boards.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ by many of the nRF52 based boards from Adafruit, you simply have to add the
345345
following line to the `Makefile.dep` of your board. Everything else
346346
will be automatically included by the build system.
347347

348-
```mk
348+
```makefile
349349
USEMODULE += boards_common_adafruit-nrf52-bootloader
350350
```
351351

@@ -360,7 +360,7 @@ community.
360360
If you want to use common makefiles, include them at the end of the specific
361361
`Makefile`, e.g. for a `Makefile.features`:
362362

363-
```mk
363+
```makefile
364364
CPU = foo
365365
CPU_MODEL = foobar
366366
# Put defined MCU peripherals here (in alphabetical order)
@@ -374,7 +374,7 @@ If the common code includes source files, it might be necessary
374374
to explicitly include the directory in your `Makefile` so the Make system
375375
finds all the necessary files:
376376

377-
```mk
377+
```makefile
378378
MODULE = board
379379

380380
DIRS += $(RIOTBOARD)/common/myCommonFolder
@@ -414,7 +414,7 @@ RIOT
414414
The main `Makefile` defines the module name for the common board module and
415415
should follow the general naming scheme of `boards_common_awesome-common-stuff`.
416416
417-
```Makefile
417+
```makefile
418418
MODULE = boards_common_adafruit-nrf52-bootloader
419419
420420
include $(RIOTBASE)/Makefile.base

0 commit comments

Comments
 (0)