Marian Buschsieweke
4b6ad3b99f
examples/lorawan: drop crazy STM32 hack
...
We cannot just decrement the reference counter of power modes without
any coordination. First, this will trigger an `assert()`ion on non
STM32 MCUs that have power modes that are not used (the ref count would
be decremented below zero). Second, there hopefully is a reason a
certain power mode is blocked, e.g. because a periph driver needs a
certain clock to function.
Likely the `periph_uart` driver on STM32 boards keeps power modes
blocked after TX is completed even when no RX callback is present, which
is the waste of power this hack tries to address. But that should be
addressed there.
2024-10-01 15:44:39 +02:00
Jason Parker
a2f4a13beb
boards/nucleo-c031c6 initial add
2024-01-30 10:11:57 -05:00
Hugues Larrive
3c465836f2
examples and tests: add atmega8 to relevent Makefile.ci
...
using dist/tools/insufficient_memory/add_insufficient_memory_board.sh
2023-07-11 21:22:02 +02:00
b7c1daab9b
examples/lorawan: extend list of supported radios
2023-04-30 21:56:52 +02:00
Marian Buschsieweke
7e58bea1bd
examples,tests: Update Makefile.ci
s
2023-02-27 12:31:04 +01:00
Ollrogge
32cef708a7
gnrc/lorawan: uncrustify files
2022-09-29 11:26:04 +02:00
0378f54dbb
Merge pull request #17695 from fjmolinas/pr_example_lorawan_usage
...
examples/lorawan/main: use auto_init_loramac
2022-04-26 10:12:15 +02:00
Oleg Hahm
843c16ad64
Merge pull request #17974 from benpicco/PM_NUM_MODES-count
...
pm: don't (un)block IDLE mode
2022-04-21 14:39:07 +02:00
Benjamin Valentin
520aa2d27d
examples/lorawan: don't unblock IDLE mode
...
This is already unblocked and will trigger an assertion.
The code is still broken as other modes might be unblocked too,
but at least it is just as broken as it was before #17895
2022-04-21 12:03:47 +02:00
Francisco Molina
af6acdd934
examples/lorawan: use auto_init_loramac
2022-04-21 11:26:56 +02:00
8b7a8055c4
examples/lorawan: disable loramac state persistence on EEPROM
...
The code is kept but disabled by default. A comment explains how to avoid issues when enabling it
2022-04-20 18:21:47 +02:00
Benjamin Valentin
ed9f740edd
examples/lorawan: move enabling of sleep modes to C code
2022-04-06 12:29:25 +02:00
b22370a2bb
examples/lorawan: update README
2022-03-14 13:44:19 +01:00
099833b488
examples/lorawan: add possibility to use ABP + pm
2022-03-14 13:44:19 +01:00
Francisco Molina
b247dbca97
examples/lorawan: use ztimer_msec if not rtc
2021-11-11 18:03:04 +01:00
Francisco Molina
dbf7efac14
examples/lorawan: add LoRaWAN keys to DOCKER_ENV_VARS
2021-10-19 13:30:46 +02:00
Jose Alamos
e04d62a969
examples/lorawan: avoid explicit cast to netdev
2021-07-09 10:38:37 +02:00
Francisco Molina
b06b2f9bcb
examples/lorawan: add missing sx126x descriptor
2021-06-28 14:08:54 +02:00
12a03c60e5
tests: examples: use IOTLAB_NODE=auto instead of auto-ssh
2021-05-28 17:23:11 +02:00
5da185c58f
examples/lorawan: add support for sx126x radio
2021-03-30 19:03:34 +02:00
f5ef94c86c
examples/lorawan: adapt to new loramac initialization
2021-03-12 14:40:12 +01:00
Akshai M
42eb6c4097
net/lorawan : Update documentation
...
Marked as non-supported:
LORAMAC_DEFAULT_ADR_ACK_LIMIT
LORAMAC_DEFAULT_ADR_ACK_DELAY
LORAMAC_DEFAULT_ADR_TIMEOUT
2021-01-26 16:56:05 +01:00
Akshai M
9600ebf536
net/lorawan : Expose to Kconfig
2021-01-26 16:56:02 +01:00
Akshai M
ae1c8497f2
examples/lorawan : Update macros
...
Updates macros to allow for changes via Kconfig
2021-01-26 16:52:59 +01:00
072718b04b
examples: tests: move lorawan examples to tests-with-config
2021-01-25 21:10:06 +01:00
Benjamin Valentin
f35b5dbed9
examples: add samd10-xmini to Makefile.ci
2020-12-11 18:25:36 +01:00
13e56b3e3e
examples: skip nucleo-l011k4 where it doesn't fit
2020-10-15 18:52:51 +02:00
Benjamin Valentin
f34f970503
examples: add stk3200 to Makefile.ci
2020-10-06 16:43:47 +02:00
9faeff63a6
examples/lorawan: fix typo in automatic test script
2020-08-11 15:50:28 +02:00
Francisco Molina
6263ee1b6f
tests-examples: ci blacklist lora tests
2020-07-01 12:20:26 +02:00
Francisco Molina
9e130be8a8
examples/lorawan: add automatic test
2020-07-01 09:08:07 +02:00
Benjamin Valentin
31dbbff450
examples: add stm32f030f4-demo to Makefile.ci
2019-10-21 15:33:48 +02:00
Marian Buschsieweke
ba90ba2e2f
examples: BOARD_INSUFFICIENT_MEMORY -> Makefile.ci
...
- Decluttered Makefile by moving BOARD_INSUFFICIENT_MEMORY lists from Makefile
to Makefile.ci
- Optimized the list for use of tools:
- One entry per line reduces the number of merge conflicts
- One entry per line allows alphabetical sorting e.g. via Vim's sort command
- Sorted all lists alphabetically
2019-10-15 09:55:07 +02:00
Francisco Molina
cdf687ceba
examples/lorawan: fix semtech_loramac_send TX ret code
...
- with #11541 TX notification are only sent after mcps confirm event
this will send a SEMTECH_LORAMAC_TX_DONE instead of
SEMTECH_LORAMAC_TX_OK.
2019-07-19 12:22:53 +02:00
f2c63c86fd
examples/lorawan: remove recv call to avoid endless lock
...
This can highly happen when no message is received from the network after a send
2019-05-29 16:24:23 +02:00
8823548fa5
examples/lorawan: remove useless lora region cflags
2019-05-26 11:47:16 +02:00
bb8bdadd69
examples/lorawan: fix potential hang in example
2019-01-30 18:58:43 +01:00
a04009470d
examples/lorawan: adapt to pkg changes
2018-09-25 22:22:13 +02:00
174a94d0c4
examples/lorawan: minor fixes in application README
2018-06-26 20:56:57 +02:00
Martine Lenders
b22040194a
examples/lorawan: use new nucleo names for BOARD_INSUFFIENT_MEMORY
2018-06-21 15:24:48 +02:00
c9f6013e98
examples: add a lorawan OTAA/class A example
2018-04-19 21:35:34 +02:00