1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
19441: pkg/semtech-loramac: fix makefile highlighting in documentation r=aabadie a=aabadie



Co-authored-by: Alexandre Abadie <alexandre.abadie@inria.fr>
This commit is contained in:
bors[bot] 2023-04-03 07:17:52 +00:00 committed by GitHub
commit 7d710a0f14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
* ```
*