Skip to content

Commit 669701a

Browse files
committed
lib: modem_info: deprecate modem_info_type_get
Deprecates the `modem_info_type_get` function in favor of `modem_info_data_type_get`. Signed-off-by: Mirko Covizzi <mirko.covizzi@nordicsemi.no>
1 parent d42f639 commit 669701a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

+2
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,8 @@ Modem libraries
640640
* The :c:type:`modem_info_data_type` type for representing LTE link information data types.
641641
* The :ref:`modem_info_data_type_get` function for requesting the data type of the current modem information type.
642642

643+
* Deprecated the :ref:`modem_info_type_get` function in favor of the :ref:`modem_info_data_type_get` function.
644+
643645
Multiprotocol Service Layer libraries
644646
-------------------------------------
645647

include/modem/modem_info.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,11 @@ int modem_info_short_get(enum modem_info info, uint16_t *buf);
298298
*/
299299
int modem_info_name_get(enum modem_info info, char *name);
300300

301-
/** @brief Request the data type of the current modem information
302-
* type.
301+
/**
302+
* @deprecated Use @ref modem_info_data_type_get instad.
303+
*
304+
* @brief Request the data type of the current modem information
305+
* type.
303306
*
304307
* @param info The requested information type.
305308
*

lib/modem_info/modem_info.c

+1
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ static int map_nrf_modem_at_scanf_error(int err)
392392
}
393393
}
394394

395+
/* Deprecated in favor of `modem_info_data_type_get`. */
395396
enum at_param_type modem_info_type_get(enum modem_info info_type)
396397
{
397398
if (info_type >= MODEM_INFO_COUNT) {

0 commit comments

Comments
 (0)