You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the end of the START_PARAM_LOOP() macro, there is a trailing '\' which links the next line into the macro. Although this isn't an issue since the next line is a blank line, anything following the START_PARAM_LOOP() will be automatically included in the macro. (may cause an unforeseen issue at a later time).
#define START_PARAM_LOOP() uint8_t exitcode = 0U;\
do {\
if (atcc_extractElement(p_at_ctxt, p_msg_in, element_infos) != ATENDMSG_NO) {exitcode = 1U;}\
if (element_infos->str_size != 0U)\
{\
The text was updated successfully, but these errors were encountered:
At the end of the START_PARAM_LOOP() macro, there is a trailing '\' which links the next line into the macro. Although this isn't an issue since the next line is a blank line, anything following the START_PARAM_LOOP() will be automatically included in the macro. (may cause an unforeseen issue at a later time).
#define START_PARAM_LOOP() uint8_t exitcode = 0U;\
do {\
if (atcc_extractElement(p_at_ctxt, p_msg_in, element_infos) != ATENDMSG_NO) {exitcode = 1U;}\
if (element_infos->str_size != 0U)\
{\
The text was updated successfully, but these errors were encountered: