Skip to content

Commit

Permalink
Fix ConfigurationManager_StoreConfigurationBlock for ESP32 (#1091)
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes authored Dec 12, 2018
1 parent 539e560 commit 4d043b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ bool ConfigurationManager_StoreConfigurationBlock(void* configurationBlock, Devi
while( pConfig < (pConfig + blockSize) )
{
// Network interface block ?
if ( *pConfig == 'C')
if ( *pConfig == 'N')
{
HAL_Configuration_NetworkInterface * pNetConfig = (HAL_Configuration_NetworkInterface*)pConfig;
pConfig += sizeof(HAL_Configuration_NetworkInterface);
Expand Down

0 comments on commit 4d043b7

Please sign in to comment.