|
21 | 21 | - [Overview](#overview) |
22 | 22 | - [Required libraries](#required-libraries) |
23 | 23 | - [Compile-time Configuration](#compile-time-configuration) |
24 | | - - [Region Selection](#region-selection) |
25 | | - - [Network selection](#network-selection) |
26 | | - - [Join Subband Selection](#join-subband-selection) |
| 24 | + - [Region Selection](#region-selection) |
| 25 | + - [Network selection](#network-selection) |
| 26 | + - [Join Subband Selection](#join-subband-selection) |
27 | 27 | - [Writing Code With This Library](#writing-code-with-this-library) |
28 | | - - [Using the LMIC's pre-configured pin-maps](#using-the-lmics-pre-configured-pin-maps) |
29 | | - - [Supplying a pin-map](#supplying-a-pin-map) |
30 | | - - [Details on use](#details-on-use) |
| 28 | + - [Using the LMIC's pre-configured pin-maps](#using-the-lmics-pre-configured-pin-maps) |
| 29 | + - [Supplying a pin-map](#supplying-a-pin-map) |
| 30 | + - [Details on use](#details-on-use) |
31 | 31 | - [APIs](#apis) |
32 | | - - [Starting operation](#starting-operation) |
33 | | - - [Poll and update the LMIC](#poll-and-update-the-lmic) |
34 | | - - [Reset the LMIC](#reset-the-lmic) |
35 | | - - [Shut down the LMIC](#shut-down-the-lmic) |
36 | | - - [Register an event listener](#register-an-event-listener) |
37 | | - - [Send an event to all listeners](#send-an-event-to-all-listeners) |
38 | | - - [Manipulate the Debug Mask](#manipulate-the-debug-mask) |
39 | | - - [Output a formatted log message](#output-a-formatted-log-message) |
40 | | - - [Get the configured LoRaWAN region, country code, and network name](#get-the-configured-lorawan-region-country-code-and-network-name) |
41 | | - - [Set link-check mode](#set-link-check-mode) |
42 | | - - [Send a buffer](#send-a-buffer) |
43 | | - - [Register a Receive-Buffer Callback](#register-a-receive-buffer-callback) |
44 | | - - [Get DevEUI, AppEUI, AppKey](#get-deveui-appeui-appkey) |
45 | | - - [Test provisioning state](#test-provisioning-state) |
| 32 | + - [Starting operation](#starting-operation) |
| 33 | + - [Poll and update the LMIC](#poll-and-update-the-lmic) |
| 34 | + - [Reset the LMIC](#reset-the-lmic) |
| 35 | + - [Shut down the LMIC](#shut-down-the-lmic) |
| 36 | + - [Register an event listener](#register-an-event-listener) |
| 37 | + - [Send an event to all listeners](#send-an-event-to-all-listeners) |
| 38 | + - [Manipulate the Debug Mask](#manipulate-the-debug-mask) |
| 39 | + - [Output a formatted log message](#output-a-formatted-log-message) |
| 40 | + - [Get the configured LoRaWAN region, country code, and network name](#get-the-configured-lorawan-region-country-code-and-network-name) |
| 41 | + - [Set link-check mode](#set-link-check-mode) |
| 42 | + - [Send a buffer](#send-a-buffer) |
| 43 | + - [Register a Receive-Buffer Callback](#register-a-receive-buffer-callback) |
| 44 | + - [Get DevEUI, AppEUI, AppKey](#get-deveui-appeui-appkey) |
| 45 | + - [Test provisioning state](#test-provisioning-state) |
46 | 46 | - [Examples](#examples) |
47 | 47 | - [Release History](#release-history) |
48 | 48 | - [Notes](#notes) |
@@ -424,10 +424,14 @@ However, [examples/simple_sensor_bme280](examples/simple_sensor_bme280/simple_se |
424 | 424 |
|
425 | 425 | **Note**: the example uses the MCCI fork of the Adafruit BME280 library, found [here](https://github.com/mcci-catena/Adafruit_BME280_Library). This won't trouble you unless you actually try to use the code, rather than replacing the sensor logic with your own logic. |
426 | 426 |
|
427 | | -Much more elaborate uses can be found in the MCCI [Catena-Arduino-Platform](https://github.com/mcci-catena/Catena-Arduino-Platform) library; but that library is so large that it's tough to figure out what's required for LoRaWAN, and what's used for supporting our boards. |
| 427 | +Much more elaborate uses can be found in the MCCI [Catena-Arduino-Platform](https://github.com/mcci-catena/Catena-Arduino-Platform) library; but that library is so large that it's tough to figure out what's required for LoRaWAN, and what's used for supporting MCCI boards. |
428 | 428 |
|
429 | 429 | ## Release History |
430 | 430 |
|
| 431 | +- Head includes the following changes. |
| 432 | +
|
| 433 | + - Correct error in logging, missing `return true` in `Arduino_LoRaWAN::cEventLog::processSingleEvent()` ([#191](https://github.com/mcci-catena/arduino-lorawan/issues/169)). This is v0.9.2-pre1. |
| 434 | +
|
431 | 435 | - v0.9.1 includes the following changes. |
432 | 436 |
|
433 | 437 | - Check size and tag of SessionChannelMask when restoring a session ([#169](https://github.com/mcci-catena/arduino-lorawan/issues/169)). |
|
0 commit comments