From 565fc4d29c90e244cb16b5af05d5cc47d1edc059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20J=C3=A4ger?= Date: Thu, 3 Mar 2022 11:15:04 +0100 Subject: [PATCH] doc: release-notes: mention API change for lorawan_send MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The message type parameter was changed to the more explicit enum. Existing code with unconfirmed message type has to be updated. Signed-off-by: Martin Jäger --- doc/releases/release-notes-3.1.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/releases/release-notes-3.1.rst b/doc/releases/release-notes-3.1.rst index a7d3ff4f4d4..a8fb904bf96 100644 --- a/doc/releases/release-notes-3.1.rst +++ b/doc/releases/release-notes-3.1.rst @@ -19,6 +19,10 @@ API Changes Changes in this release ======================= +* LoRaWAN: The message type parameter in :c:func:`lorawan_send` was changed + from ``uint8_t`` to ``enum lorawan_message_type``. If ``0`` was passed for + unconfirmed message, this has to be changed to ``LORAWAN_MSG_UNCONFIRMED``. + Removed APIs in this release ============================