Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ActoryOu committed Nov 19, 2024
1 parent 5516349 commit 693b195
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
output
build
build
6 changes: 3 additions & 3 deletions source/cellular_3gpp_urc_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ static CellularPktStatus_t _regStatusSwitchParsingFuncCreg( CellularContext_t *
* +CREG URC response format:
* - +CREG: <n>,<stat>[,[<lac>],[<ci>],[<AcT>][,<cause_type>,<reject_cause>]]
*/
LogDebug( ( "Ignore unknown +CREG parameter at position(%u) in registration URC.", i ) );
LogDebug( ( "Ignore unknown +CREG parameter at position(%u) in registration URC. Token %s.", i, pToken ) );
}
else
{
Expand Down Expand Up @@ -554,7 +554,7 @@ static CellularPktStatus_t _regStatusSwitchParsingFuncCgreg( CellularContext_t *
*
* For now we only handle the format for 0~3, And ignores additional parameters for <n> in range 4-5.
*/
LogDebug( ( "Ignore unknown +CGREG parameter at position(%u) in registration URC.", i ) );
LogDebug( ( "Ignore unknown +CGREG parameter at position(%u) in registration URC. Token %s.", i, pToken ) );
}
else
{
Expand Down Expand Up @@ -596,7 +596,7 @@ static CellularPktStatus_t _regStatusSwitchParsingFuncCereg( CellularContext_t *
*
* For now we only handle the format for 0~3, And ignores additional parameters for <n> in range 4-5.
*/
LogDebug( ( "Ignore unknown +CEREG parameter at position(%u) in registration URC.", i ) );
LogDebug( ( "Ignore unknown +CEREG parameter at position(%u) in registration URC. Token %s.", i, pToken ) );
}
else
{
Expand Down

0 comments on commit 693b195

Please sign in to comment.