Hello,
i would like to point out what i think is a missing dependency in file "include/modem/modem_info.h". At row 187 there is:
/** @brief Request the data type of the current modem information * type. * * @param info The requested information type. * * @return The data type of the requested modem information data. * Otherwise, a (negative) error code is returned. */ enum at_param_type modem_info_type_get(enum modem_info info);
but at_param_type is not declared in the header. It's true that most of the compilers don't complain about enum, but this is not always true. To solve the issue i think it should be included
#include <at_cmd_parser/at_params.h>
Considering this should be a support request i would like to know if i am correct or i am missing something. Moreover, considering that issues are disabled on your Github channel, i would like to know if i can write such posts here (if not i'm sorry).
Frax