1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/semtech-loramac: fix makefile highlighting in documentation

This commit is contained in:
Alexandre Abadie 2023-04-03 08:15:50 +02:00
parent f797bbee2e
commit be54114b6d
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -16,21 +16,21 @@
* This package only works with Semtech SX1272 and SX1276 radio devices. Thus,
* in order to use it properly, the application `Makefile` must import the
* corresponding device driver:
* ```
* ```mk
* USEMODULE += sx1272 # for a SX1272 radio device
* USEMODULE += sx1276 # for a SX1276 radio device
* ```
*
* In order to use this package in an application, add the following in
* the application `Makefile`:
* ```
* ```mk
* USEPKG += semtech-loramac
* ```
*
* Since the LoRa radio depends on regional parameters regarding the access
* to the physical support, the region where the device is used needs to be
* set at compile time. Example for EU868:
* ```
* ```mk
* LORA_REGION = EU868
* ```
*