Skip to content

Commit

Permalink
Remove const qualifier in CellularPdnConfig_t (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot authored May 17, 2024
1 parent 71d6f60 commit 6486160
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/include/cellular_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -681,11 +681,11 @@ typedef struct CellularIPAddress
*/
typedef struct CellularPdnConfig
{
CellularPdnContextType_t pdnContextType; /**< PDN Context type. */
CellularPdnAuthType_t pdnAuthType; /**< PDN Authentication type. */
const char apnName[ CELLULAR_APN_MAX_SIZE + 1 ]; /**< APN name. */
const char username[ CELLULAR_PDN_USERNAME_MAX_SIZE + 1 ]; /**< Username. */
const char password[ CELLULAR_PDN_PASSWORD_MAX_SIZE + 1 ]; /**< Password. */
CellularPdnContextType_t pdnContextType; /**< PDN Context type. */
CellularPdnAuthType_t pdnAuthType; /**< PDN Authentication type. */
char apnName[ CELLULAR_APN_MAX_SIZE + 1 ]; /**< APN name. */
char username[ CELLULAR_PDN_USERNAME_MAX_SIZE + 1 ]; /**< Username. */
char password[ CELLULAR_PDN_PASSWORD_MAX_SIZE + 1 ]; /**< Password. */
} CellularPdnConfig_t;

/**
Expand Down

0 comments on commit 6486160

Please sign in to comment.