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

examples/lorawan: add missing sx126x descriptor

This commit is contained in:
Francisco Molina 2021-06-28 14:07:28 +02:00
parent bc5810ea33
commit b06b2f9bcb
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8

View File

@ -52,7 +52,12 @@ static kernel_pid_t sender_pid;
static char sender_stack[THREAD_STACKSIZE_MAIN / 2];
static semtech_loramac_t loramac;
#if IS_USED(MODULE_SX127X)
static sx127x_t sx127x;
#endif
#if IS_USED(MODULE_SX126X)
static sx126x_t sx126x;
#endif
static const char *message = "This is RIOT!";