This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Re-configuring to DHCP after Static IP use on project: Network_terminal_CC3220SF_LAUNCHXL_tirtos_ccs

Other Parts Discussed in Thread: CC3220MOD, UNIFLASH, CC3220SF

Hi,

I was initially able to get a DHCP IP Address for the CC3220 WiFi chip on my local Network.
However, once I used a Static IP address, I could no longer go back to using DHCP.

The dhcp command "wlanconnect -s ssid-t WPA/WPA2 -p password" worked
Then the static command "wlanconnect -s ssid-t WPA/WPA2 -p password -ip address -gw gateway" also worked
But then the dhcp command "wlanconnect -s ssid-t WPA/WPA2 -p password" no longer worked

(There seems to be a non-volatile setting that needs to be cleared).
I used the code below to reconfigure for DHCP but I get the error:
[WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0

---------------------------------------------------------------------------------------
SlNetCfgIpV4Args_t  ipV4 = {0}; //clear IP, mask, gateway, DNS server
retVal = sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE,
                                    SL_NETCFG_ADDR_DHCP,
                                    sizeof(SlNetCfgIpV4Args_t),
                                    (uint8_t *)&ipV4);

/* Restart NWP for this configuration */
retVal = sl_Stop(SL_STOP_TIMEOUT);
retVal = sl_Start(0, 0, 0);
--------------------------------------------------------------------------------------------
Is there another setting or call that needs to be made to clear out the Static IP info?
Thanks!

  • Hi,

    http://www.ti.com/lit/ug/swru455h/swru455h.pdf

    See section B.1 for persistency settings for sl_NetAppSet

    Also the device will begin the AP connection process by disconnecting in order to start a fresh session.

    What SDK version are you using?

    -Aaron

  • Hi Aaron,

    Our SDK version is:  simplelink_cc32xx_sdk_2_40_02_00

    I took a look at section B.1.

    I didn't see any parameters in sl_NetAppSet that would clear out the old Static IP information.

    However, I tried (as I mentioned in my original post): 

    SlNetCfgIpV4Args_t ipV4 = {0}; //clear IP, mask, gateway, DNS server

    retVal = sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE,SL_NETCFG_ADDR_DHCP,sizeof(SlNetCfgIpV4Args_t),(uint8_t *)&ipV4);

    retVal = sl_Stop(SL_STOP_TIMEOUT);

    retVal = sl_Start(0, 0, 0);

    sl_NetCfgSet with the parameter SL_NETCFG_IPV4_STA_ADDR_MODE is listed in B.1 as system persistent

    and is suppose to do the following:  Setting/releasing a DHCP/DHCP LLA /STATIC STA IP address

    but it doesn't seem to re-enable DHCP, at least not as I have called it.

  • Try like this: sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE,SL_NETCFG_ADDR_DHCP,0,0);

    -Aaron

  • Hi Aaron,

    I tried  sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE,SL_NETCFG_ADDR_DHCP,0,0) first as it was mentioned in community.

    It did not work so I then tried setting the SlNetCfgIpV4Args_t structure to zero and pass that in. Neither approach re-enables DHCP.

    Thanks, Glenn.

  • I assume you are modifying the network_terminal app? Where are you putting these lines in your code?

    -Aaron

  • Hi Aaron,

    Yes, We are using the network_terminal project. We have tried the sl_NetCfgSet() function call in Main.c after a call to s1_WifiConfig(). We also have a separate thread that monitors connection status and sends the wlanconnect message when required. We tried placing the sl_NetCfgSet() call here as well when no -IP was specified by the user. In both cases we get the error: [WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0   Can you tell me what this error means?

     Thanks, Glenn.

  • What line in Main.c specifically?

    -Aaron

  • We use this function:

    int32_t SetupNetworkForDHCP(void)
    {
    int32_t RetVal;

    //Clear out any old profiles
    UART_PRINT("Delete any old profiles...\n\r");
    sl_WlanProfileDel(SL_WLAN_DEL_ALL_PROFILES);

    //Configure for DHCP
    UART_PRINT("Configure for DHCP\n\r");
    SlNetCfgIpV4Args_t ipV4 = {0}; //clear IP, mask, gateway, DNS server
    RetVal = sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE,SL_NETCFG_ADDR_DHCP,sizeof(SlNetCfgIpV4Args_t),(uint8_t *)&ipV4);

    /* Restart NWP for this configuration */
    RetVal |= sl_Stop(SL_STOP_TIMEOUT);
    RetVal |= sl_Start(0, 0, 0);
    if (RetVal < 0) {
    /* Handle Error */  return (-1);
    }

    //set the configuration flag
    ConfiguredForDHCP = true;
    return(0);
    }

    SetupNetworkForDHCP() is in Main.c below (highlighted):

    void * mainThread(void *arg)
    {
    int32_t RetVal ;
    pthread_attr_t pAttrs;
    struct sched_param priParam;
    struct timespec ts = {0};

    pthread_t WiFiConnectThread = (pthread_t)NULL;
    pthread_t NetRxEventThread = (pthread_t)NULL;
    // pthread_t SpiSlaveRxEventThread = (pthread_t)NULL; (unused)


    /* Initialize the SPI Interface here
    (SPI0 is used for nwp processor comms) */
    SPI_init();

    /* Initialize the GPIOs */
    GPIO_init();

    /* Initialize Application variables */
    RetVal = initAppVariables();

    /* Initialize the Terminal UART */
    InitTerm();
    #ifdef DEBUG_USING_TI_CC
    IdeDisplay = Display_open(Display_Type_HOST, NULL); //GPK for IDE Console
    #endif

    //Initialize the busy mutex for UART transfers
    pthread_mutex_init(&UartBusyMutex, NULL);

    /* initialize the real-time clock */
    clock_settime(CLOCK_REALTIME, &ts);

    //Initialize the Timer module
    Timer_init();
    Timer_Params_init(&uartTimerParams);
    uartTimerParams.period = 10; //10Hz = 100ms
    uartTimerParams.periodUnits = Timer_PERIOD_HZ;
    uartTimerParams.timerCallback = UART_TimerCallback;
    uartTimerParams.timerMode = Timer_CONTINUOUS_CALLBACK;
    uartTimerHandle = Timer_open(1, &uartTimerParams); //timer 1

    /* Switch off all LEDs on boards */
    GPIO_write(Board_GPIO_LED0, Board_GPIO_LED_OFF);
    GPIO_write(Board_GPIO_LED1, Board_GPIO_LED_OFF);
    GPIO_write(Board_GPIO_LED2, Board_GPIO_LED_OFF);
    GPIO_write(Pin63_GPIO8_TCPCONNECT, GPIO8_TCP_DISCONNECT);


    /* Create the sl_Task internal spawn thread */
    pthread_attr_init(&pAttrs);
    priParam.sched_priority = SPAWN_TASK_PRIORITY;
    RetVal = pthread_attr_setschedparam(&pAttrs, &priParam);
    RetVal |= pthread_attr_setstacksize(&pAttrs, TASK_STACK_SIZE);

    /* The SimpleLink host driver architecture mandate spawn
    thread to be created prior to calling Sl_start (turning the NWP on).
    The purpose of this thread is to handle asynchronous events sent from the NWP.
    Every event is classified and later handled by the Host driver event handlers. */
    RetVal = pthread_create(&gSpawn_thread, &pAttrs, sl_Task, NULL);
    if (RetVal < 0) {
    /* Handle Error */
    UART_PRINT("Network Terminal - Unable to create spawn thread \n");
    return(NULL);
    }

    /* Before turning on the NWP, reset any previously configured parameters
    IMPORTANT NOTE - This is an example reset function,
    user must update this function to match the application settings */
    RetVal = sl_WifiConfig();
    if (RetVal < 0) {
    /* Handle Error */
    UART_PRINT("Network Terminal - Couldn't configure Network Processor - %d\n",RetVal);
    return(NULL);
    }

    /* Turn on the NWP */
    RetVal = sl_Start(0,0,0);
    if (RetVal < 0) {
    /* Handle Error */
    UART_PRINT("sl_start failed - %d\n",RetVal);
    return(NULL);
    }

    /* sl_Start returns on success the role that device started on */
    app_CB.Role = RetVal;

    /* disable the soft-roaming */ 
    cmdSoftRoamingDisablecallback(NULL); //NOTE: this fails with (SL_ERROR_INVALID_PARAM)

    /* Unregister mDNS services */
    RetVal = sl_NetAppMDNSUnRegisterService(0, 0, 0);
    if (RetVal < 0) {
    /* Handle Error */
    UART_PRINT("sl_NetAppMDNSUnRegisterService failed - %d\n",RetVal);
    return(NULL);
    }

    /* Output the BANNER to the UART terminal */
    RetVal = DisplayAppBanner(APPLICATION_NAME, APPLICATION_VERSION);
    if (RetVal < 0) {
    /* Handle Error */
    UART_PRINT("Network Terminal - Unable to retrieve device information \n");
    return(NULL);
    }

    //Network Setup, Use DHCP at start
    SetupNetworkForDHCP();

    if (RetVal != 0) {
    /* Handle Error */
    UART_PRINT("DHCP Configuration Failed - %d\n", RetVal);
    return (NULL);
    }


    /***************** THREADS CREATION *****************/

    // **TCP SERVER** Connection Thread
    //Our 4 options are TCP server/client or UDP server/client
    // Continually attempt to connect to the network,
    // then initiate a TCP Server that monitors for a TCP client connection
    pthread_attr_setschedparam(&pAttrs, &priParam);
    RetVal = pthread_create(&WiFiConnectThread, &pAttrs, Wifi_connectProcess, NULL);
    if (RetVal != 0) {
    /* Handle Error */
    UART_PRINT("Could not create TCP SERVER Thread!!\n\r");
    return(NULL);
    }
    UART_PRINT("WiFi Connection Thread Started....");


    /* **Network-RX Thread** (Handles WiFi Network -> WiFi Chip Message handling) */
    pthread_attr_setschedparam(&pAttrs, &priParam);
    RetVal = pthread_create(&NetRxEventThread, &pAttrs, Wifi_netRxEventProcess, NULL);
    if (RetVal != 0) {
    /* Handle Error */
    UART_PRINT("Could not create Network RX Event Thread!!\n\r");
    return(NULL);
    }
    UART_PRINT("WiFi Network Receive Thread Started....");

    /* Run the Main Loop Thread which handles input from the NXP processor (runs forever) */
    UART_PRINT("WiFi UART Receive Thread Started....\n\r");
    Wifi_nxpRxEventProcess(); //This handles specifically the NXP WiFi UART

    return(0);
    }

  • Hi Glenn,

    What's in WiFiConnectThread? Where are you waiting for DHCP event in your code?

    -Aaron

  • Hi Aaron,

    The thread polls IS_IP_ACQUIRED() which reads the status from the callback.

    Any idea what the error [WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0 means?

    I have attached the connect thread below:

    void * Wifi_connectProcess(void *pvParameters)
    {
      int32_t retVal;
      int8_t text[SL_NETAPP_MAX_DEVICE_URN_LEN]; 
      uint8_t textLen = SL_NETAPP_MAX_DEVICE_URN_LEN;
      uint8_t seed;
      uint16_t seedLen = 1;
      uint32_t rand_num;
      int16_t socketChild;
      SlSocklen_t addrLen;
      SlSockAddrIn_t clientAddr;

      //setup
      memset(&myWlanConnectString[0], 0, sizeof(myWlanConnectString));

      //This thread continually tries to establish a TCP connection with a client
      while (1) //Run the connect logic forever
      {
         //If we are not on the WiFi (no way to connect), try to connect and sleep
         if (!IS_IP_ACQUIRED(app_CB.Status))
         {
            Wifi_HandleTcpConnectionState(0); //Off, no IP

            //Attempt to connect and get an IP
            if (strstr(&myWlanConnectString[0], nxpCmd_reqConn)) //connect info available
            {
                //Determine DHCP or Static
                if (strstr(&myWlanConnectString[0], "-ip") == NULL) { //no ip, so use DHCP
                    if (ConfiguredForDHCP == false) { //was static, need to reconfigure back to DHCP
                    SetupNetworkForDHCP();
                }
             }
             else {
                 //Specifying an IP address automatically configures the stack ?
                 ConfiguredForDHCP = false; //set flag, configured for static IP
              }

               //execute the IP connect command
               UART_PRINT("Connect with: %s\n\r", &myWlanConnectString[0]);
               cmd_run((char *)&myWlanConnectString[0]);
            }
           sleep(1);
           continue;
         }

         //or we have a TCP connection (we were successful), sleep
         if (app_CB.tcpConnected == 1) {
             sleep(1);
             continue;
          }

          //Got IP but not TCP connected, configure the server if not already done
          if (app_CB.configurationDone == 0)
          {
              //Start the ***TCP SERVER***
              retVal = Wifi_startTcpServer();
              if (retVal < 0) {
                   Wifi_HandleTcpConnectionState(0); //Off, Start TCP Server failed
                   UART_PRINT("Failed to start TCP server\n\r");
                   continue;
           }
           UART_PRINT("TCP Server is Running, Waiting for Connection.... \n\r");

           //Register The Service
           sl_NetAppGet(SL_NETAPP_DEVICE_ID, SL_NETAPP_DEVICE_URN, &textLen, (uint8_t *)text);
           retVal = sl_NetAppMDNSRegisterService( (const int8_t *)NetT_WIFI_DNS_NAME,
                                                                               (uint8_t)strlen(NetT_WIFI_DNS_NAME),
                                                                               text,
                                                                               textLen,
                                                                               NetT_WIFI_TCP_PORT,
                                                                               NetT_WIFI_TTL,
                                                          (SL_NETAPP_MDNS_OPTIONS_IS_UNIQUE_BIT | SL_NETAPP_MDNS_OPTIONS_IS_NOT_PERSISTENT) );

            if (retVal < 0) {
                  UART_PRINT("Failed to register service\n\r");
                  continue;
             }

             sl_NetUtilGet(SL_NETUTIL_TRUE_RANDOM, 0, &seed, &seedLen);
             srand(seed);
             app_CB.configurationDone = 1;
         }

         // ***TCP SERVER***, Uses Accept to connect to a client
         // Attempt TCP connection if not connected

         if (app_CB.tcpConnected == 0)
         {
              //random wait time
              rand_num = (rand() % 8);
              sleep(rand_num);

              //No TCP connection yet, check for incoming requests on active server
              addrLen = sizeof(SlSockAddrIn_t);
              socketChild = sl_Accept(app_CB.sockTcpServer, (SlSockAddr_t *)&clientAddr, &addrLen);

              if (socketChild >= 0)
              {
                   Wifi_HandleTcpConnectionState(1); //On, TCP connected
                   //always work with one active socket
                   app_CB.socket = socketChild;

                   UART_PRINT("TCP server connection established with %d.%d.%d.%d\n\r",
                                                   (clientAddr.sin_addr.s_addr & (0x000000FF)) >> 0,
                                                   (clientAddr.sin_addr.s_addr & (0x0000FF00)) >> 8,
                                                   (clientAddr.sin_addr.s_addr & (0x00FF0000)) >> 16,
                                                    (clientAddr.sin_addr.s_addr & (0xFF000000)) >> 24);

              }
          }
       } //while loop closure
    }

  • Hello TI Support.

    Glenn has provided considerable information on the Static to DHCP problem we are seeing.

    Can you please escalate this issue so we can see it resolved soon.

    Thank you,

    Rich

  • I see there are a lot of layers in the code here, which makes it hard to see the exact source of your issue. In order to make things clear, please try this instead of your current logic:

    1.Configure for DHCP

    2. Manually connect to a hardcoded AP

    3. Wait in a loop only for the IP acquired event.

  • Hi Aaron,

    Your 3 step suggestion is exactly what the thread code is doing. Since we have no IP address, the code snippet below is continually running. The remainder of the code is only activated once you have an IP and are waiting for a TCP connection. Is there someone you can contact that would know what the error message: [WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0 means?

    Snippet of code running in the thread:

    while (1)  {

         //If we are not on the WiFi (no IP), try to connect or sleep
         if (!IS_IP_ACQUIRED(app_CB.Status)) //STEP 3, loop on event
         {
              Wifi_HandleTcpConnectionState(0); //Off, no IP

             //Attempt to connect and get an IP
             if (strstr(&myWlanConnectString[0], nxpCmd_reqConn)) //connect info available
             {
                  //Determine DHCP or Static
                  if (strstr(&myWlanConnectString[0], "-ip") == NULL) { //no ip, so use DHCP
                      if (ConfiguredForDHCP == false) { //was static, need to reconfigure back to DHCP
                          SetupNetworkForDHCP(); // STEP 1, configure in main or here (runs once)
                      }
                  }
                 else {
                     //Specifying an IP address automatically configures the stack
                     ConfiguredForDHCP = false; //set flag, configured for static IP
                 }

                 //execute the IP connect command
                 UART_PRINT("Connect with: %s\n\r", &myWlanConnectString[0]);
                 cmd_run((char *)&myWlanConnectString[0]); //STEP2, connect to the AP

            }  //if closure, send connect command
            sleep(1);
            continue;

         }  // if closure, is ip acquired

         // other TCP logic ....

    } //while loop closure

  • The connection failure could be coming from using the wrong password perhaps. Are you able to print out the SSID and password in your existing sequence as a debugging step?

  • SSID and password are correct as the connection is established when we specify a static IP address.

    Is there someone you can contact that would know what the error message: [WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0 means?

    Thanks, Glenn.

  • There is no single reason why a disconnection event would be reported without the SSID/BSSID. To trace through this I will need to see the output from the NWP during this event. Please follow these instructions to capture the logs while the connection attempt is occurring, and send them to me:

    http://processors.wiki.ti.com/index.php/CC3120_%26_CC3220_Capture_NWP_Logs

    -Aaron

  • The wiki says to "extract" pin 62. However, on the CC3220MODASF-package type: LGA-63, pin 62 is a ground pin. Are they trying to get access to the UART0-TX which is on pins 46? Or are they looking for one of the other UART ports? The wiki is unclear on this.

    Also, you say "There is no single reason why a disconnection event would be reported without the SSID/BSSID."  Does your statement mean that there is more than one reason for the generation of that error report? Do you know what those reasons are? If so, can you tell me what they are? I may be able to decipher what configuration needs to be manually updated. The clue here is that it did work with DHCP, did work with Static, and then subsequently stopped working with DHCP. It is clear that a configuration setting is not being set back for DHCP.  Can you contact one of the developers and ask what configuration parameters would generate the error  [WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0 after going DHCP/Static/DHCP? That seems like a very specific scenario.

  • Hi,

    It's means pin 62 of CC3220 QFN package = pin 52 of CC3220MOD package. Please see table 4-1 in datasheet to understand how pins from QFN are mapped to MOD.

    Jan

  • CC3220.log
    � -�-1{�(	��	��
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��?'	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��1g�
    6g�;g-�	��`��s
    ��
    �s)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �
    '�/tmp/crashminidump.bin
    ��+�2���2���
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    
    �
    � 	
    f�	
    
    g��	
    
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    �����.���	
    �
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    -�	]����
    ����PPPPPP P@P�PS�
    ��
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    ���.����
    ���
    �!
    '�/sys/sign.bin
    �4s��Fe(
    ���.������
    � 	�..
    .�
    ��
    �
    .l 
    �
    ��	.
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    2.`
    �!
    '�/sys/p2p.cfg
    �o�
    �2�
    h�Fe(
    4�!+
    '�/tmp/phy.cal
    �]��-�+-�+-�+-�]��
    �-�]���-�	]�������	.QR==�(�
    �	H
    �!
    '�/sys/date_time.cfg
    �
    >(�Fe(3�.'�.'�....:..'..?4...*, de,�.*, ��,�*, ,-�*, �.r
    J2`aaA
    s6)	)W$e�xV.
    �\��.p
    K
    �!
    '�/sys/stacfg.ini0
    �TU17.2�-�TU
    �-�TU4-�TU4t3-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    P
    ")	��
    
    J#
    �#
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��S��S�6�)	�
     )	��!6�)	�)	2�.e$�G aWaV.e$mVyVyV�!
    '�/sys/ipcfg.ini
    ���-p
    -���
    �-���4-���4�-�	��
    ��62)	2)	��
    
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    C6�)	�
    )	��
    
    	6�)	�
    **")	a�T!a��!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6a)	a)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��I&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��;f�
    @f�Df-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�0L
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�.0
    17QR==�(�
    .2�3.'�.'�....:..'..?4*, de��*, ����.*, ,-`�*, `�..
    #..r2`aaA
    s)W$e�xV.
    �\��6)	
    $.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    ")	��
    6��)	�*"
     
    
    **")	4�T!4�
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\��!
    '�/sys/mdns.cfg
    �[\-�+-�[\
    �-�[\4-�[\4�-�	[\�
    B�3D�
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�.017.2�-�	[\�B�33D.0�64)	4)	f�6f)	f)	3�
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�63)	317.2�3)	���!
    �"
    �
    '�/sys/pref.net
    ��-,- ,-��
    �-��4�0�-��4�0��0��@-�	��@��D
    'S��S�6�)	�)	2�e$e$�!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��F&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��8f�
    =f�Af-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�'�
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�.0
    17QR==�(�
    .2�3.'�.'�....:..'..?4*, de��*, ����.*, ,-`�*, `�..
    #..r2`aaA
    s)W$e�xV.
    �\��6)	
    $.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    "*"
     
    
    **"
    )	��%NB�%NB�5��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.S6�)	�.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$xfinr
    )"++./����0#xfin>�=.$SDSTr
    )"++./����0#SDST>�=.$SDSTr
    )"++./����0#SDST>�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z" #�
    Tr
    )",,
    �>�=�	�.$xfin.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg(�*, -.X�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggL�.$SDST	0/�"�����SDST6�L)	��!
    �.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge�*, .-�9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$CBCIr
    )"++./����0#CBCI>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$xfinr
    )"++./����0#xfin>�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egl�*, -.l�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST71����$�Z`(\�B	v"�
    w"�
    x"
    y"
    �
    �"6}
    �"
    �"�c"3�
    �!,,
    �!
    
    �!z[�!z�[W"�A���*�
    
    '('#B�&72��"΀�.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST)	��%NB�+%NB�,Fpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�3
    
    	5��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$xfinr
    )"++./����0#xfin>�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egh�*, -.h�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggd�.$SDST.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge�*, .-�9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$xfinr
    )"++./����0#xfin>�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egh�*, -.h�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST)	��%NB&H%NBIFpn.$SDST
    ��!
    9)'�`9*, ge��*, .-��
    
    	.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$Z8NJr
    )"++./����0#Z8NJ>�=.$D183r
    )"++./����0#D183>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$HP-Pr
    )"++./����0#HP-P>�=.$DIREr
    )"++./����0#DIRE>�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egh�*, -.h�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST71��7��$�Z`(\�B	v"jw"�
    x"
    y"
    �
    �"[�
    �"�"�c"Uk
    �!
    �!"
    �!zz�!z�zW"�A���*�
    
    '('#B�&72��!"΀�?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggp�.$SDST.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge�*, .-�9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$DIREr
    )"++./����0#DIRE>�=.$HP-Pr
    )"++./����0#HP-P>�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg\�*, -.\�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	)	��%NBZd%NB6eFpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$xfinr
    )"++./����0#xfin>�=.$SDSCr
    )"++./����0#SDSC>�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST

    Attached is a log file capture during an attempted DHCP connection.

    Let me know if you have any issues with the file.

  • Hi Glenn,

    It does appear the device is getting deauthenticated by the AP during connection process for some reason. So far its not clear why. I'll keep looking at the logs provided. Meanwhile, to check to see if the issue is affected by the DHCP process, can you try using the following for your switch to DHCP:

    sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE, SL_NETCFG_ADDR_DISABLE_FAST_RENEW,0,0)

    Thanks,

    -Aaron

  • Hi Aaron,

    Attached is a log file: 

    DHCP.log
    71�0���$�Z`(\�B	
    v"
    w"	
    x"	
    y"
    �
    �"��"�
    �"c"�
    �!bc
    �!)
    �!zz�!z�zW"�A'
    �d��*�
    
    '('#B�&72��)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	71�0���$�Z`(\�B	
    v"
    w"
    	
    x"
    y"
    �
    �"��"�
    �"
    c"�
    �!bc
    �!.
    �!zz�!z�zW"�A'
    �d��*�
    
    '('#B�&72��)	�6)	�6�)	71�0���$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    �"+�"(
    �"c"$
    �!cc
    �!3
    �!zz�!z�zW"�A'
    �d��*�
    &
    '('#B�&72��)	�6)	�6�)	)	�6)	�6�)	71�0���$�Z`(\�B	
    v"
    w"	
    x"	
    y"
    �
    �"N�"H
    �"c"@
    �!cc
    �!>
    �!zz�!z�zW"�A'
    �d��*�
    0
    '('#B�&72��)	�6)	�6�)	
    � -�-1{�(	��	��
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��@'	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��2g�
    7g�<g-�	��`��s
    ��
    �s)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �
    '�/tmp/crashminidump.bin
    ��+�2���2���
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    
    �
    � 	
    f�	
    
    g��	
    
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    �����.���	
    �
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    -�	]����
    ����PPPPPP P@P�PS�
    ��
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    ���.����
    ���
    �!
    '�/sys/sign.bin
    �4s��Fe(
    ���.������
    � 	�..
    .�
    ��
    �
    .l *@$���
    �
    �$�	.
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    2.`
    �!
    '�/sys/p2p.cfg
    �o�
    �2�
    h�Fe(
    4�!+
    '�/tmp/phy.cal
    �]��-�+-�+-�+-�]��
    �-�]���-�	]�������	.QR==�(�
    �	i
    �!
    '�/sys/date_time.cfg
    �
    >(�Fe(3�.'�.'�....:..'..?4....*, de���*, �����*, ,-���.r*, ���
    l2`aaA.p
    s6)	
    l)W$e�xV.
    �\��0
    �!
    '�/sys/stacfg.ini
    �TU17.2�-�TU
    �-�TU43-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    r
    ")	��
    
    J#
    �#
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��S��S�6�)	�)	��!6�)	�
     )	2�.e$�G aWaV.e$mVyVyV�!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	��
    
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    C6�)	�
    )	��
    
    	6�)	�
    *)	a�T!a��!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6a)	a*")	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��A&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��3f�
    7f�<f-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�dP
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�.0
    17QR==�(�
    .2�3.'�.'�....:..'..?4*, de��*, ����.*, ,-`�*, `�..
    #..r2`aaA
    s)W$e�xV.
    �\��6)	
    $.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    ")	��
    6��)	�*"
     
    
    **")	4�T!4�
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\��!
    '�/sys/mdns.cfg
    �[\-,-�[\
    �-�[\4-�[\4�-�	[\�
    B�3D�
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�.017.2�-�	[\�B�33D.0�64)	4)	f�6f)	f)	3�
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�63)	317.2�3)	���!
    �"
    �
    '�/sys/pref.net
    ��-0,-@,-��
    �-��4�0�-��4�0��0��@-�	��@��D
    'S��S�6�)	�)	2�.e$�G aWaV.e$
    mVyVyV�!
    '�/sys/ipcfg.ini
    ���-p
    -���
    �-���4-���4�-�	��
    ��62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��D&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��5f�
    :f�?f-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�.0
    17QR==�(�
    .2�3.'�.'�....:..'..?4*, de��*, ����.*, ,-`�*, `�..
    #..r2`aaA
    s)W$e�xV.
    �\��6)	
    $.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    "*"
     
    
    **"
    )	2�.e$���e$�!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��H&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��:f�
    ?f�Df-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l *@$���
    �
    �$�	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�.0
    17QR==�(�
    .2�3.'�.'�....:..'..?4*, de��.*, ����*, ,-8�*, 8�.
    #...r2`aaA
    s6)	
    #)W$e�xV.
    �\��.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    ")	��
    NB(*"
     
    
    **"%NB5��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.S6�)	�.$CBCIr
    )"++./����0#CBCI>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSCr
    )"++./����0#SDSC>�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z" #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg�*, -.�*?"qr""
    )">�='�`9
     #y� -��$ y?"�r""
    )"
     #c� -��$ c>�=	'�`9�*>�=5	�	�A"�"����SDST6�L)	�
    �L$SDSTM*@$����6%)	%2��N��b'�`9	*, ��*, gh��*, .4��*, ��*, hi��*, 4.��r.	!."B��)��-G$SDSTH$estI$J$� �K���.F*]"<*�"
    Z"d.3�.2..-.$SDST.*]"<*�"
    Z"d
    
    	.$SDST*]"<*�"
    Z"d)	��� g�6)	)	��6)	)	��6)	)	���� �	6)	)	'�-T!'�4 6')	')	4�-T!4�
    �}����}�64)	4)	��6�4
    )	�4
    
    	
    
    	
    
    	)	�6)	�6�)	)	�6)	�6�)	71�'��$�Z`(\�B	
    v""
    w"D
    x"
    y"
    �
    �"m�"-�"
    c"
    �!`_
    �!
    �!zz�!z�zW"�A�
    �c��*�
    
    '('#B�&72��)	�6)	�6�)	?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggX�.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$Z8NJr
    )"++./����0#Z8NJ>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSTr
    )"++./����0#SDST>�=.$xfinr
    )"++./����0#xfin>�=.$SDS-r
    )"++./����0#SDS->�=.$DIREr
    )"++./����0#DIRE>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r) *]"<*�"
    Z"d#�
    Tr
    )",,
    �>�=�	.$SDST�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST71�n$�"|�$�Z`(\�B	v"yw"�
    x"
    y"
    �
    �"[�
    �"
    �"�
    c"X�
    �!
    �!�
    �!zz�!z�zW"�A���*�
    
    '('#B�&72��R"΀�.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST)	��5NB.b5NB
    cFpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��
    
    	.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDS-r
    )"++./����0#SDS->�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egX�*, -.X�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    � -�-1{�(	��	��
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��@'	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��2g�
    7g�<g-�	��`��s
    ��
    �s)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �
    '�/tmp/crashminidump.bin
    ��+�2���2���
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    
    �
    � 	
    f�	
    
    g��	
    
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    �����.���	
    �
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    -�	]����
    ����PPPPPP P@P�PS�
    ��
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    ���.����
    ���
    �!
    '�/sys/sign.bin
    �4s��Fe(
    ���.������
    � 	�..
    .�
    ��
    �
    .l 
    �
    ��	.
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    2.`
    �!
    '�/sys/p2p.cfg
    �o�
    �2�
    h�Fe(
    4�!+
    '�/tmp/phy.cal
    �]��-�+-�+-�+-�]��
    �-�]���-�	]�������	.QR==�(�
    �	P
    �!
    '�/sys/date_time.cfg
    �
    >(�Fe(3�.'�.'�....:..'..?4....*, de,�*, ���*, ,-�*, �.r
    R2`aaA.p
    s6)	
    S)W$e�xV.
    �\��0
    �!
    '�/sys/stacfg.ini
    �TU17.2�-�TU
    �-�TU43-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    X
    ")	��
    
    J#
    �#
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��S��S�6�)	�)	��!6�)	�
     )	2�.e$�G aWaV.e$mVyVyV�!
    '�/sys/ipcfg.ini
    ���-p
    -���
    �-���4-���4�-�	��
    ��62)	2)	��
    
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    C6�)	�
    )	��
    
    	6�)	�
    *)	a�T!a��!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6a)	a*")	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��G&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��9f�
    >f�Bf-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b��L
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�.0
    17QR==�(�
    .2�3.'�.'�....:..'..?4*, de��*, ����.*, ,-`�*, `�..
    #..r2`aaA
    s)W$e�xV.
    �\��6)	
    $.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    ")	��
    6��)	�*"
     
    
    **")	4�T!4�
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\��!
    '�/sys/mdns.cfg
    �[\-�+-�[\
    �-�[\4-�[\4�-�	[\�
    B�3D�
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�.017.2�-�	[\�B�33D.0�64)	4)	f�6f)	f)	3�
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�63)	317.2�3)	���!
    �"
    �
    '�/sys/pref.net
    ��-,- ,-��
    �-��4�0�-��4�0��0��@-�	��@��D
    'S��S�6�)	�)	2�.e$�G aWaV.e$
    mVyVyV�!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    ,
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��Y&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��Kf�
    Pf�Uf-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�C�
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5V�2$�G[�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�.0
    17QR==�(�
    .2�3.'�.'�....:..'..?4*, de��*, ����.*, ,-`�*, `�..
    #..r2`aaA
    s)W$e�xV.
    �\��6)	
    $.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    "*"
     
    
    **"
    )	��%NB�%NB�5��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.S6�)	�.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z" #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg(�*, -.X�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggL�	0/�"�����SDST6�L)	��!
    �.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge�*, .-�9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$CBCIr
    )"++./����0#CBCI>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSCr
    )"++./����0#SDSC>�=.$HP-Pr
    )"++./����0#HP-P>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egl�*, -.l�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST71�����$�Z`(\�B	v"�w"�
    
    x"
    
    y"
    �
    �"6�
    �"
    �"�c"3�
    �!--
    �!
    
    �!zz�!z�zW"�A���*�
    
    '('#B�&72��"΀�.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST)	��%NB�+%NB�,Fpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��.6�)	�*]"<*�"
    Z"d�.*��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	
    
    	.$CBCIr
    )"++./����0#CBCI>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDS-r
    )"++./����0#SDS->�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egh�*, -.h�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST

    using the attribute: SL_NETCFG_ADDR_DISABLE_FAST_RENEW.

    .

  • Hi Aaron,

    Any ideas on how to get this DHCP issue resolved?

    Thanks, Glenn

  • Hi Glenn,

    I'm jumping in for Aaron here. I reviewed the latest logs with DHCP fast renew disabled, but I don't see any connection attempts in them. The device resets multiple times (as far as I can see), but never gets to the connection phase as in the first logs ("cc3220.log").

    Can you please provide another capture of the test with DHCP fast renew disabled that includes a full connection attempt/error sequence?

    Thank you,

    Ben M

  • Hi Ben,

    I have attached another log file using DHCP with the SL_NETCFG_ADDR_DISABLE_FAST_RENEW attribute.

    The log should show 3 attemts to connect to the network using DHCP.

    Thanks, Glenn.DHCP2.log

  • Hi Glenn,

    Thanks for collecting these and sharing. I do see the three attempts that fail. Some of the bytes in the log appear corrupted so I can't completely tell what the cause is at this point.

    A few more questions from my side to help me see if there is a way for us to reproduce:

    1) Have you seen this behavior (after configuring static IP and then returning to DHCP) with other APs?

    2) What AP model are you using for testing?

    3) Can you provide a sniffer capture of a connection attempt?

    4) After checking on (3), can you check that reflashing the device with UniFlash Imagecreator and setting the DHCP option through that tool allows the device to be able to connect to the AP successfully again?

    Thank you!

    Ben M

  • Hi Ben,

    1) We have seen the issue with multiple APs.

    2) NetGear and various Verizon APs is what we are using.

    3) I have Wireshark on my PC trying to capture remote traffic from the device to the AP. I haven't had luck with this, but I will see if I can find a way to get you the data.

    4) We are not sure what values to use on the DHCP option page. I have attached a screen shot. Can you tell us the proper values?

    DHCPscreen.docx

  • Hi Glenn,

    Thanks. I really appreciate the extra details. Yes, that is the proper way to set the DHCP as enable in the programming image of the device.

    Have you set it this way before, programmed the device, and still seen the issue? Or is it only after you do this and then switch to static IP at runtime that the issue starts to appear?

    If it is the former, that would indicate to me that the issue is generally with the use of DHCP for those tests and not related to changing the setting dynamically.

    EDIT: Another thing I wanted to mention is that I don't see a successful connection to the AP with a Static IP on the device in any of the logs you provided. Perhaps it is just that the logs were corrupt, but can you provide a log of the successful connection case? I want to make sure the successes you are seeing are actually related to the IP acquisition method vs. just being observed after a device reset is occurring for some reason.

    Thanks!

    Ben M

  • Hi Ben,

    A question on the DHCP enable page, why would one specify an IP address, gateway and a subnet mask if they are going to use DHCP? Should these settings be all F's or zeros?

    What we have observed so far is that DHCP works when we get the part (factory settings). After using a static IP, we can never do DHCP again. Once we have the specifics on how to set the IP parameters on the DHCP page, we will try reprogramming the device to DHCP enabled and see if it then works. If the reprogramming works, to me, it would suggest that something is getting set properly on the reprogram. The question would be: what is that parameter? 

    We did not provide a static IP case in the log, but we can provide a static IP connection success log for you.

    Thanks, Glenn

  • Hi Glenn,

    Actually, you are correct that if you are using DHCP you would not need to specify those values! That is what the GUI is trying to represent (though not very clearly) by turning those boxes gray when the dhcp box is checked. If you click on them, you can't edit them. The values will not be set because they are not used.

    Go ahead and try reprogramming with that option and let me know what you observe. I agree that if you do that and the issue disappears that it will indicate something unexpected is happening when the setting for static IP is being made and then you are reverting back to DHCP at runtime.

    Best Regards,

    Ben M

  • Hi Ben,

    We reprogrammed the device using UniFlash with DHCP enabled.

    We then attempted DHCP connection and it still failed. I have attached the log.

    It appears that this UniFlash reprogramming is not the same as getting a factory set device.

    I will also provide a Static IP connection log once I can get that capture.

    Glenn.

    DHCP_fail_after_reprogramming.log
    %NBJFpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��
    
    	.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$Seacr
    )"++./����0#Seac>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$xfinr
    )"++./����0#xfin>�=.$SDSTr
    )"++./����0#SDST>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.$xfin.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egh�*, -.h�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST71��)��$�Z`(\�B	v"ow"�
    x"
    y"
    �
    �"[�
    �"�"�c"UY
    �!
    �!
    �!zz�!z�zW"�A
    ��*�
    /
    '('#B�&72��!"΀�.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST71^�|�
    $Z`(
    \B	v"Xw"
    x"
    y"
    �
    "[
    
    
    ""{c"U 
    �!
    �!
    R
    �!zz�!z�zW"�A�	�*�
    
    '('#B'726"?�.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	*, ggX�.$SDST.$SDST	0/�"̤��SDSTL)	�!
    .�.*��r
    )";� �:B��@">
    
    =
    9
    )'`9*, ge��*, .-��9
    GA
    "I
    �x�
    
    '`93
    "\
    T��.S*]"<*"
    Z"dDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$xfinr
    )"++./
    ����0#xfin>
    
    =.$HP-Pr
    )"++./����0#HP-P>
    
    =.$SDS-r
    )"++./����0#SDS->
    
    =.$DIREr
    )"++./����0#DIRE>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egP�*, -.P�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST)	
    %NBB�%NB�F
    p
    n
    .$SDST.$SDST
    ��!
    9
    )'`9*, ge��*, .-��	.
    )	
    �.**]"<*"
    Z"d��r
    )"5@">
    
    =
    9
    )9
    GA
    "5	/�"���SDSTL)	2	�35�x������������5���������<����5�����2���������"SDST�I
    x�
    
    '`93
    "\
    T��.So�	DSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$CBCIr
    )"++./
    ����0#CBCI>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSCr
    )"++./����0#SDSC>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.$CBCI.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egX�*, -.X�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	*, ggX�.$SDST.$SDST.$SDST	0/�"̤��SDSTL)	�!
    .�.*��r
    )";� �:B��@">
    
    =
    9
    )'`9*, ge��*, .-��9
    GA
    "I
    �x�
    
    '`93
    "\
    T��.S*]"<*"
    Z"dDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$CBCIr
    )"++./
    ����0#CBCI>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r) 
    *]"<*"
    Z"d#�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egP�*, -.P�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST71t�|�
    $Z`(
    \B	v"sw"
    x"
    y"
    �
    "[�
    
    "
    "�c"X�
    �!
    �!d
    �!zz�!z�zW"�A'�*�
    
    '('#B'72�="?�.$SDST	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST	)	
    %NBv�%NBR�F
    p
    n
    .$SDST.$SDST
    ��!
    9
    )'`9*, ge��*, .-��.
    )	
    �.**]"<*"
    Z"d��r
    )"5@">
    
    =
    9
    )9
    GA
    "5	/�"���SDSTL)	2	�35�x������������5���������<����5�����2���������"SDST�I
    x�
    
    '`93
    "\
    T��.So�	eacr
    )"++./����0#Seac>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$xfinr
    )"++./
    ����0#xfin>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.$xfin.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egP�*, -.P�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST
    � -�-1{�(	�
    	�
    
    �	-�-1{�( LS�����
    �!'�/sys/certstore.lst�J�
    �
    -�J-�J�-	�J����
    �*��1
    �
    		�
    �*� @�>�o-	v*�,�?[G�
    �*� x�B�1��
    	��
     
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �
    �@'	�-�`�
    :i�:i:i
    �*Ӡ *� i*�f� 
    �
    �
    ��2g�7g�<g-	�`��s
    ��
    s)�`aaA�-�-1{�(!'�/sys/certstore.lst�J�
    �
    -�J�-�J�-	�J���'�@@.tmpl�U�e(�'�/tmp/fcon.ssid>e(�e(`aaA
    	�'�/tmp/crashminidump.bin�+�2��2��!'�/sys/mdmpcfg.ini�I�Fe(!'�/sys/pmcfg.iniI�Fe(
    \
    a"<b
    �
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql�-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!�-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �-�`�
    
    �*�
    1!'�/sys/ipcfg.ini��-�Ϧ-��4-��4�-	�ϭ�!'�/sys/mode.cfg��I-��I�-��I4-��I4P-	��I�
    Q
    
    �
    
    �7`  7` $ @M7``q H7`� l7` 0�7`DI � 7`�i  7w@  �h
    `�
    �	
    
    �
    � 	
    f
    �	
    
    g�
    
    �	
    !'�/sys/devname.cfgc-c�-c4-c4b-	c�
    	
    
    
    
    
    
    �����.�
    �
    
    �	�
    �
    �!'�/tmp/phy.cal]-]�"L�
    (
    -	]��
    ����P
    P
    P
    P
    P
    P
     P
    @P
    P
    S
    �
    
    ��
    
    
    �.
    �1!'�/sys/macadd.bin�q-�q�-�q4-�q4-	�q�:4Vdt2$�
    	
    �-�`D
    �-�`H��-�`P�
    �
    �-�`�����-�`�4-�`�4��.4�-�`0
    
    �-�`8
    
    �
    �-	�`��s
    ���.�
    ���
    !'�/sys/sign.bin4s�Fe(
    ���.
    � 	�
    
    /
    .
    
    /����
    
    /
    l 
    
    
    
    �	/
    �'�/sys/rxfltr.ini���e(�e(�'�/sys/rxfltr.ini���e(�e(�A�'�/sys/rxfltr.ini���e(�e(�A�A"�A�A�A�A�A�A�B�B	
    !'�/sys/mdns.cfg[\-[\�-[\4-[\4�-	[\�B�B��B��A�A�A�B���
    .C
    
    
    3.`!'�/sys/p2p.cfgo�
    
    3�
    hFe(
    
    4!+'�/tmp/phy.cal]-�+-�+-�+-]�-�]�-	]���
    ��	.Q
    R
    ==�(
    �
    �	j!'�/sys/date_time.cfg
    >(Fe(3�.'dt.'dt...
    .:..'.
    .?4....*, de,�*, ���*, ,-�*, �.
    r
    2`aaA.
    p
    s
    6
    )	
    )W$exV.
    \�0
    !'�/sys/stacfg.iniTU1
    7.2�-TU�-TU43-TU4t-	TU��K
    J#�#!'�/sys/pref.net�-��-�4-�4-	��DRNS�1"{
    
    ")	
    
    #�#!'�/sys/stacfg.iniTU-TU�-TU4-TU4t-	TU��S���
    )	
    )	
    !
    )	
    
     
    	.e$G aWaV.e$mVyVyV!'�/sys/ipcfg.ini��-p
    -�Ϧ-���4-���4�-	�ϭ�2)	2
    *)	
    
    !'�/sys/stacfg.iniTU-TU�-TU4-TU4t-	TU��C
    )	
    )	
    
    
    	
    )	
    *")	aT!a!'�/sys/mode.cfg��I-�
    -��I�-���I4-���I4P-	��I�a)	a*")	ss)	s�!��!
    6s)	s!
    � -�-1{�(	�
    	�
    �
    
    �	-�-1{�( LS�����
    �!'�/sys/certstore.lst�J�
    �
    -�J-�J�-	�J����
    �*��1
    �
    		�
    �*� @�>�o-	v*�,�?[G�
    �*� x�B�1��
    	��
    
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �
    �L&	�-�`�
    :i�:i:i
    �*Ӡ *� i*�f� 
    �
    �
    ��>f�Cf�Hf-	�`��s
    ��
    r)�`aaA�-�-1{�(!'�/sys/certstore.lst�J�
    �
    -�J�-�J�-	�J���'�@@.tmpl�U�e(�'�/tmp/fcon.ssid>e(�e(`aaA
    	!'�/sys/mdmpcfg.ini�I�Fe(!'�/sys/pmcfg.iniI�Fe(
    \
    a"<b
    4P
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql�-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!�-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �-�`�
    
    �*�
    1!'�/sys/ipcfg.ini��-�Ϧ-��4-��4�-	�ϭ�!'�/sys/mode.cfg��I-��I�-��I4-��I4P-	��I�
    Q
    
    �
    
    �7`  7` $ @M7``q H7`� l7` 0�7`DI � 7`�i  7w@  �h
    `�
    �	
    �
    � 	
    f
    �	
    g�
    
    �	!'�/sys/devname.cfgc-c�-c4-c4b-	c�
    	
    
    	
    
    	�����.�
    �
    
    �	
    �
    �
    �!'�/tmp/phy.cal]-]�"L�
    (
    
    ����P
    P
    P
    P
    P
    P
     P
    @P
    P
    S
    �
    
    
    ��
    
    
    �.
    �1!'�/sys/macadd.bin�q-�q�-�q4-�q4-	�q�:4Vdt2$�
    	
    �-�`D
    �-�`H��-�`P�
    �
    �-�`�����-�`�4-�`�4��.4�-�`0
    
    �-�`8
    
    �
    �-	�`��s
    �-]��.�-]����
    !'�/sys/sign.bin4s�Fe(-]
    �-	]��
    ���.�
    � 	�
    
    
    
    
    ����
    
    
    l 
    
    
    
    �	
    �'�/sys/rxfltr.ini���e(�e(�'�/sys/rxfltr.ini���e(�e(�A�'�/sys/rxfltr.ini���e(�e(�A�A"�A�A�A�A�A�A�B�B	
    !'�/sys/mdns.cfg[\-[\�-[\4-[\4�-	[\�B�B��B��A�A�A�B���
    .C
    
    
    .`!'�/sys/p2p.cfgo�
    
    �
    g�	.
    �	!'�/sys/date_time.cfgFe(
    >(Fe(3�0
    
    
     1
    7Q
    R
    ==�(
    �
    .2�3.'dt.'dt...
    .:..'.
    .?4*, de��*, �ɨ�.*, ,-`�*, `�.
    
    $...
    r2`aaA
    s
    6
    )	
    
    $)W$exV.
    \�.
    p!'�/sys/stacfg.iniTU-TU�-TU4-TU4t-	TU��K
    J#�#!'�/sys/pref.net�-��-�4-�4-	��DRNS�1"{
    
    )
    ")	�
    
    �
    �)	�
    *"
     
    
    	T!4!'�/sys/mdns.cfg[\-[\�-[\4-[\4�-	[\�!'�/sys/mdns.cfg[\-,-[\�-�[\4-�[\4�-	[\�
    B�3D�
    
    !'�/sys/mdns.cfg[\-[\�-[\4-[\4�.0
    1
    7.2�-	[\�B�33D.0
    �
    4)	4)	ff)	f)	3!'�/sys/macadd.bin�q-�q�-�q4-�q4-	�q�:4Vdt2$�3)	31
    7.2�3)	
    !�"�'�/sys/pref.net�-0,-@,-��-��4�0�-��4�0ڪ0�@-	��@��D'S���
    )	
    )	2e$e$!'�/sys/ipcfg.ini��-`
    -�Ϧ-���4-���4�-	�ϭ�2)	2)	ss)	s�!��!
    6s)	s!
    � -�-1{�(	�
    	�
    �
    
    �	-�-1{�( LS�����
    �!'�/sys/certstore.lst�J�
    �
    -�J-�J�-	�J����
    �*��1
    �
    		�
    �*� @�>�o-	v*�,�?[G�
    �*� x�B�1��
    	��
    
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �
    �<&	�-�`�
    :i�:i:i
    �*Ӡ *� i*�f� 
    �
    �
    ��.f�3f�7f-	�`��s
    ��
    r)�`aaA�-�-1{�(!'�/sys/certstore.lst�J�
    �
    -�J�-�J�-	�J���'�@@.tmpl�U�e(�'�/tmp/fcon.ssid>e(�e(`aaA
    	!'�/sys/mdmpcfg.ini�I�Fe(!'�/sys/pmcfg.iniI�Fe(
    \
    a"<b
    
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql�-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!�-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �-�`�
    
    �*�
    1!'�/sys/ipcfg.ini��-�Ϧ-��4-��4�-	�ϭ�!'�/sys/mode.cfg��I-��I�-��I4-��I4P-	��I�
    Q
    
    �
    
    �7`  7` $ @M7``q H7`� l7` 0�7`DI � 7`�i  7w@  �h
    `�
    �	
    �
    � 	
    f
    �	
    g�
    
    �	!'�/sys/devname.cfgc-c�-c4-c4b-	c�
    	
    
    	
    
    	�����.�
    �
    
    �	
    �
    �
    �!'�/tmp/phy.cal]-]�"L�
    (
    
    ����P
    P
    P
    P
    P
    P
     P
    @P
    P
    S
    �
    
    
    ��
    
    
    �.
    �1!'�/sys/macadd.bin�q-�q�-�q4-�q4-	�q�:4Vdt2$�
    	
    �-�`D
    �-�`H��-�`P�
    �
    �-�`�����-�`�4-�`�4��.4�-�`0
    
    �-�`8
    
    �
    �-	�`��s
    �-]��.�-]����
    !'�/sys/sign.bin4s�Fe(-]
    �-	]��
    ���.�
    � 	�
    
    
    
    
    ����
    
    
    l 
    
    
    
    �	
    �'�/sys/rxfltr.ini���e(�e(�'�/sys/rxfltr.ini���e(�e(�A�'�/sys/rxfltr.ini���e(�e(�A�A"�A�A�A�A�A�A�B�B	
    !'�/sys/mdns.cfg[\-[\�-[\4-[\4�-	[\�B�B��B��A�A�A�B���
    .C
    
    
    .`!'�/sys/p2p.cfgo�
    
    �
    g�	.
    �	!'�/sys/date_time.cfgFe(
    >(Fe(3�0
    
    
     1
    7Q
    R
    ==�(
    �
    .2�3.'dt.'dt...
    .:..'.
    .?4*, de��*, �ɨ�.*, ,-`�*, `�.
    
    $...
    r2`aaA
    s
    6
    )	
    
    $)W$exV.
    \�.
    p!'�/sys/stacfg.iniTU-TU�-TU4-TU4t-	TU��K
    J#�#!'�/sys/pref.net�-��-�4-�4-	��DRNS�1"{
    
    )
    "*"
     
    
    
    	!'�/sys/macadd.bin�q-P,-�q�-��q4-��q4-	�q�:�'�/sys/dhcp.biny�e(2)	2)	ss)	s�!��!
    6s)	s!
    � -�-1{�(	�
    	�
    �
    
    �	-�-1{�( LS�����
    �!'�/sys/certstore.lst�J�
    �
    -�J-�J�-	�J����
    �*��1
    �
    		�
    �*� @�>�o-	v*�,�?[G�
    �*� x�B�1��
    	��
    
    
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �
    �:&	�-�`�
    :i�:i:i
    �*Ӡ *� i*�f� 
    �
    �
    ��,f�0f�5f-	�`��s
    ��
    
    r)�`aaA�-�-1{�(!'�/sys/certstore.lst�J�
    �
    -�J�-�J�-	�J���'�@@.tmpl�U�e(�'�/tmp/fcon.ssid>e(�e(`aaA
    	!'�/sys/mdmpcfg.ini�I�Fe(!'�/sys/pmcfg.iniI�Fe(
    \
    a"<b*
    /
    
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql�-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!�-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �-�`�
    
    �*�
    1!'�/sys/ipcfg.ini��-�Ϧ-��4-��4�-	�ϭ�!'�/sys/mode.cfg��I-��I�-��I4-��I4P-	��I�
    Q
    
    �
    
    �7`  7` $ @M7``q H7`� l7` 0�7`DI � 7`�i  7w@  �h
    `�
    �	
    �
    � 	
    f
    �	
    g�
    
    �	!'�/sys/devname.cfgc-c�-c4-c4b-	c�
    	
    
    	
    
    	�����.�
    �
    
    �	
    �
    �
    �!'�/tmp/phy.cal]-]�"L�
    (
    
    ����P
    P
    P
    P
    P
    P
     P
    @P
    P
    S
    �
    
    
    ��
    
    
    �.
    �1!'�/sys/macadd.bin�q-�q�-�q4-�q4-	�q�:4Vdt2$�
    	
    �-�`D
    �-�`H��-�`P�
    �
    �-�`�����-�`�4-�`�4��.4�-�`0
    
    �-�`8
    
    �
    �-	�`��s
    �-]��.�-]����
    !'�/sys/sign.bin4s�Fe(-]
    �-	]��
    ���.�
    � 	�
    
    
    
    
    ����
    
    
    l 
    
    
    
    �	
    �'�/sys/rxfltr.ini���e(�e(�'�/sys/rxfltr.ini���e(�e(�A�'�/sys/rxfltr.ini���e(�e(�A�A"�A�A�A�A�A�A�B�B	
    !'�/sys/mdns.cfg[\-[\�-[\4-[\4�-	[\�B�B��B��A�A�A�B���
    .C
    
    
    .`!'�/sys/p2p.cfgo�
    
    �
    g�	.
    �	 !'�/sys/date_time.cfgFe(
    >(Fe(3�0
    
    
     1
    7Q
    R
    ==�(
    �
    .2�3.'dt.'dt...
    .:..'.
    .?4*, de��*, �ɨ�.*, ,-`�*, `�.
    
    $...
    r2`aaA
    s
    6
    )	
    
    $)W$exV.
    \�.
    p!'�/sys/stacfg.iniTU-TU�-TU4-TU4t-	TU��K
    J#�#!'�/sys/pref.net�-��-�4-�4-	��DRNS�1"{
    
    )
    "*"
     
    
    	
    
    B8%NB5�x������������5���������<����5�����2���������"SDST�I
    x�
    
    '`93
    "\
    T��.S
    )	
    DSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDS-r
    )"++./����0#SDS->
    
    =.$SDS-r
    )"++./����0#SDS->
    
    =.$DIREr
    )"++./����0#DIRE>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z" 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, eg(�*, -.X�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	*, ggL�	0/�"̤��SDSTL)	�!
    �.*��r
    )";� �:B��@">
    
    =
    9
    )'`9*, ge�*, .-�9
    GA
    "I
    �x�
    
    '`93
    "\
    T��.S*]"<*"
    Z"dDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDS-r
    )"++./����0#SDS->
    
    =.$HP-Pr
    )"++./����0#HP-P>
    
    =.$SDS-r
    )"++./����0#SDS->
    
    =.$DIREr
    )"++./����0#DIRE>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egl�*, -.l�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST)	
    %NBl %NBH!F
    p
    n
    .$SDST.$SDST.$SDST
    ��!
    9
    )'`9*, ge��*, .-��.
    )	
    �.**]"<*"
    Z"d��r
    )"5@">
    
    =
    9
    )9
    GA
    "5	/�"���SDSTL)	2	�35�x������������5���������<����5�����2���������"SDST�I
    x�
    
    '`93
    "\
    T��.So�		DSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, eg
    �*, -.
    �*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST71h��
    $Z`(
    \B	v"�w"
    x"
    y"
    �
    
    "QY
    
    ""�c"Km
    �!
    �!
    �!zz�!z�zW"�A�*�
    
    '('#B�&72�"?�.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	*, ggd�.$SDST.$SDST	0/�"̤��SDSTL)	�!
    .�.*��r
    )";� �:B��@">
    
    =
    9
    )'`9*, ge�*, .-�9
    GA
    "I
    �x�
    
    '`93
    "\
    T��.S*]"<*"
    Z"dDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$DIREr
    )"++./����0#DIRE>
    
    =.$SDSCr
    )"++./����0#SDSC>
    
    =.$SDSCr
    )"++./����0#SDSC>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egh�*, -.h�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST)	
    %NB�<%NB|=F
    p
    n
    .$SDST.$SDST
    ��!
    9
    )'`9*, ge��*, .-��	.
    )	
    *]"<*"
    Z"d�.*��r
    )"5@">
    
    =
    9
    )9
    GA
    "5	/�"���SDSTL)	2	�35�x������������5���������<����5�����2���������"SDST�I
    x�
    
    '`93
    "\
    T��.So�	DSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$CBCIr
    )"++./
    ����0#CBCI>
    
    =.$SDSCr
    )"++./����0#SDSC>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egh�*, -.h�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST)	2!'�/sys/macadd.bin�q-`,?"qr""
    )">
    
    = #y� -�$ y.$SDST-�q�-��q4-��q4-	�q�:�'�/sys/dhcp.biny�e(2)	2)	ss)	s�!�s�p
    n
    
    ��!
    9
    )'`9*, ge �*, .- �.��!
    6s)	s*]"<!
    � -�-1{�(	�
    	�
    �
    
    �	-�-1{�( LS�����
    �!'�/sys/certstore.lst�J�
    �
    -�J-�J�-	�J����
    �*��1
    �
    		�
    �*� @�>�o-	v*�,�?[G�
    �*� x�B�1��
    	��
    
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �
    �G&	�-�`�
    :i�:i:i
    �*Ӡ *� i*�f� 
    �
    �
    ��9f�>f�Cf-	�`��s
    ��
    r)�`aaA�-�-1{�(!'�/sys/certstore.lst�J�
    �
    -�J�-�J�-	�J���'�@@.tmpl�U�e(�'�/tmp/fcon.ssid>e(�e(`aaA
    	!'�/sys/mdmpcfg.ini�I�Fe(!'�/sys/pmcfg.iniI�Fe(
    \
    a"<b*
    @#
    ��'�/sys/servicepack.ucf�`�
     �s B!'�/sys/ucf_signatures.bin�Ql-�Ql�-�Ql4-�Ql4�-	�Ql��
    �!'�/sys/servicepack.ucf�`�
    -�`!�-�`-�`@-�`8
    �
    �
    �
    �
    �
    �
    �-�`�
    
    �*�
    1!'�/sys/ipcfg.ini��-�Ϧ-��4-��4�-	�ϭ�!'�/sys/mode.cfg��I-��I�-��I4-��I4P-	��I�
    Q
    
    �
    
    �7`  7` $ @M7``q H7`� l7` 0�7`DI � 7`�i  7w@  �h
    `�
    �	
    �
    � 	
    f
    �	
    g�
    
    �	!'�/sys/devname.cfgc-c�-c4-c4b-	c�
    	
    
    	
    
    	�����.�
    �
    
    �	
    �
    �
    �!'�/tmp/phy.cal]-]�"L�
    (
    
    ����P
    P
    P
    P
    P
    P
     P
    @P
    P
    S
    �
    
    
    ��
    
    
    �.
    �1!'�/sys/macadd.bin�q-�q�-�q4-�q4-	�q�:4Vdt2$�
    	
    �-�`D
    �-�`H��-�`P�
    �
    �-�`�����-�`�4-�`�4��.4�-�`0
    
    �-�`8
    
    �
    �-	�`��s
    �-]��.�-]����
    !'�/sys/sign.bin4s�Fe(-]
    �-	]��
    ���.�
    � 	�
    
    
    
    
    ����
    
    
    l 
    
    
    
    �	
    �'�/sys/rxfltr.ini���e(�e(�'�/sys/rxfltr.ini���e(�e(�A�'�/sys/rxfltr.ini���e(�e(�A�A"�A�A�A�A�A�A�B�B	
    !'�/sys/mdns.cfg[\-[\�-[\4-[\4�-	[\�B�B��B��A�A�A�B���
    .C
    
    
    .`!'�/sys/p2p.cfgo�
    
    �
    g�	.
    �	 !'�/sys/date_time.cfgFe(
    >(Fe(3�0
    
    
     1
    7Q
    R
    ==�(
    �
    .2�3.'dt.'dt...
    .:..'.
    .?4*, de��*, �ɨ�.*, ,-`�*, `�.
    
    $...
    r2`aaA
    s
    6
    )	
    
    $)W$exV.
    \�.
    p!'�/sys/stacfg.iniTU-TU�-TU4-TU4t-	TU��K
    J#�#!'�/sys/pref.net�-��-�4-�4-	��DRNS�1"{
    
    )
    "*"
     
    
    
    	
    B�%NB�5�x������������5���������<����5�����2���������"SDST�I
    x�
    
    '`93
    "\
    T��.S
    )	
    DSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$CBCIr
    )"++./
    ����0#CBCI>
    
    =.$SDSCr
    )"++./����0#SDSC>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z" 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, eg(�*, -.X�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	*, ggL�	0/�"̤��SDSTL)	�!
    �.*��r
    )";� �:B��@">
    
    =
    9
    )'`9*, ge�*, .-�9
    GA
    "I
    �x�
    
    '`93
    "\
    T��.S*]"<*"
    Z"deacr
    )"++./����0#Seac>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$xfinr
    )"++./
    ����0#xfin>
    
    =.$DIREr
    )"++./����0#DIRE>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	.$xfin�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egl�*, -.l�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST71��
    $Z`(
    \B	v"�
    w"
    x"
    y"
    �
    
    ";�
    
    "
    "�
    c"8�
    �!((
    �!
    
    �!zz�!z�zW"�A�*�
    &
    '('#B�&72"?�.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST)	
    %NB*%NB�*F
    p
    n
    .$SDST.$SDST
    ��!
    9
    )'`9*, ge
    �*, .-
    �.
    )	
    �.**]"<*"
    Z"d��r
    )"5@">
    
    =
    9
    )9
    GA
    "5	/�"���SDSTL)	2	�3	5�x������������5���������<����5�����2���������"SDST�I
    x�
    
    '`93
    "\
    T��.So�	BCIr
    )"++./
    ����0#CBCI>
    
    =.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSTH
    �"SDST�.$SDSTr
    )"++./
    ����0#SDST>
    
    =.$SDSCr
    )"++./����0#SDSC>
    
    =
    r&&
    )"004
    �"+
    >
    
    =�.� 8#SDSTL$SDSTM
    4
    �"+
    9
    )'`9q
     �
    
    �
    ��	��
    >
    
    = $
    .��.��1"r)*]"<*"
    Z"d 
    #�Tr
    )",,
    >
    
    =�	�.E��!
    ."$� ���
    .#����..
    .
    .
    .
    .=
    .=
    ).0
    .1 
    �!r!!>
    
    =r  >
    
    =r>
    
    =,r
    )">
    
    =9
    )'`9*, egh�*, -.h�*?"qr""
    )">
    
    ='`9 #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	.$SDST.$SDST.$SDST?"qr""
    )">
    
    = #y� -�$ y.$SDST.$SDST.$SDST.$SDST.$SDST

  • Ben,

    Attached is a log for the successful Static IP connection.

    StaticIP_Connection.log
    
    	
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d
    
    	
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d)	�6)	�6�)	./
    �*]"<*�"
    Z"d)	�6)	�6�)	71����$�Z`(\�B	
    v""
    w"*!|9
    x"!
    y"
    �
    �"f�",�"c"�
    �![Z
    �!	�!Nz�!N�zW"�A�X
    �b��<�
    
    '('#B�&72��)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	71�����$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    �"��"�
    �"c"�
    �!^b
    �!		�!Nz�!N�zW"�A�
    �d��<�
    
    '('#B�&72��)	�6)	�6�)	
    � -�-1{�(	��	��
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��A'	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��3g�
    8g�<g-�	��`��s
    ��
    �s)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �
    '�/tmp/crashminidump.bin
    ��+�2���2���
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    
    �
    � 	
    f�	
    
    g��	
    
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    �����.���	
    �
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    -�	]����
    ����PPPPPP P@P�PS�
    ��
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    ���.����
    ���
    �!
    '�/sys/sign.bin
    �4s��Fe(
    ���.������
    � 	�/.
    /�
    ��
    �
    /l *@$�����������
    �
    �$���	/
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    2.`
    �!
    '�/sys/p2p.cfg
    �o�
    �3�
    h�Fe(
    5�!+
    '�/tmp/phy.cal
    �]��-�+-�+-�+-�]��
    �-�]���-�	]�������	.QR==�(�
    �	O
    �!
    '�/sys/date_time.cfg
    �
    >(�Fe(3�.'dt.'dt....:..'..?4....*, de���*, �����*, ,-���.r*, ���
    R2`aaA.p
    s6)	
    R)W$e�xV.
    �\��0
    �!
    '�/sys/stacfg.ini
    �TU17.2�-�TU
    �-�TU43-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    X
    ")	��
    
    J#
    �#
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��S��S�6�)	�)	��!6�)	�
     )	2�.e$�G aWaV.e$mVyVyV�!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	��
    
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    C6�)	�
    
    *)	��
    
    	6�)	�*")	a�T!a��!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6a)	a*")	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    #
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��P&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��Bf�
    Gf�Lf-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b��L
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�0
     17QR==�(�
    .2�3.'dt.'dt....:..'..?4*, de��*, ����.*, ,-`�*, `�.
    $...r2`aaA
    s6)	
    $)W$e�xV.
    �\��.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    ")	��
    6��)	�*"
     
    
    **")	4�T!4�
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\��!
    '�/sys/mdns.cfg
    �[\-,-�[\
    �-�[\4-�[\4�-�	[\�
    B�3D�
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�.017.2�-�	[\�B�33D.0�64)	4)	f�6f)	f)	3�
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�63)	317.2�3)	���!
    �"
    �
    '�/sys/pref.net
    ��-0,-@,-��
    �-��4�0�-��4�0��0��@-�	��@��D
    'S��S�6�)	�)	2�e$e$�!
    '�/sys/ipcfg.ini
    ���-p
    -���
    �-���4-���4�-�	��
    ��62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    #
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��P&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��Cf�
    Gf�Lf-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b���
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�0
     17QR==�(�
    .2�3.'dt.'dt....:..'..?4*, de��*, ����.*, ,-`�*, `�.
    $...r2`aaA
    s6)	
    $)W$e�xV.
    �\��.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    "*"
     
    
    **"
    )	2��!
    '�/sys/macadd.bin
    ��q
    -`,-��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:
    �
    '�/sys/dhcp.bin
    �y
    ��e(62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��M&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��?f�
    Df�If-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	 
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�0
     17QR==�(�
    .2�3.'dt.'dt....:..'..?4*, de��*, ����.*, ,-`�*, `�.
    $...r2`aaA
    s6)	
    $)W$e�xV.
    �\��.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    "*"
     
    
    **")	2�
    .e$��������.e$����!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    �@�>�o-	v*�,��[G�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��<&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��.f�
    3f�8f-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*��
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l *@$�����������
    �
    �$���	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�0
     17QR==�(�
    .2�3.'dt.'dt....:..'..?4*, de��.*, ����*, ,-8�*, 8�..
    $..r2`aaA
    s)W$e�xV.
    �\��6)	
    $.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    ")	��
    NB(*"
     
    
    **"%NB5��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.S6�)	�.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$CBCIr
    )"++./����0#CBCI>�=.$DIREr
    )"++./����0#DIRE>�=.$SDSCr
    )"++./����0#SDSC>�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z" #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.$CBCI.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg�*, -.�*?"qr""
    )">�='�`9
     #y� -��$ y?"�r""
    )"
     #c� -��$ c>�=	'�`9�*>�=5	�	A"�"����SDST6�L)	�
    �L$SDSTM*@$�����������2�`����6%)	%*w���2��N��b'�`9	*, ��*, gh��*, .4��*, ��*, hi��*, 4.��r.	!."B��)��-G$SDSTH$estI$J$� �K���.F*]"<*�"
    Z"d.3�.2��
    �2�@���@82�b����ؤ� .�!
    '�/tmp/table.arp
    �l�%.--�,
    +./
    +.$SDST.-�l�%
    �-�l�%4-�l�%4�-�	l�%��2��V
    �
    2�@���*]"<*�"
    Z"d*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d*]"<*�"
    Z"d.$SDST*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d
    
    	�)	��� g�6)	)	��6)	)	��6)	)	���� �	6)	)	'�-T!'�4 6')	')	4�-T!4�
    �}����}�64)	4)	��6�4
    )	�4
    �*]"<*�"
    Z"d
    
    	�
    �*]"<*�"
    Z"d*]"<*�"
    Z"d��
    �*]"<*�"
    Z"d
    
    	
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d)	�6)	�6�)	
    
    	
    �*]"<*�"
    Z"d)	�6)	�6�)	�
    �*]"<*�"
    Z"d)	�6)	�6�)	./
    �*]"<*�"
    Z"d71�|��$�Z`(\�B	
    v"% 
    w"(!�7
    x"!	
    y"
    �
    �"��"`��"
    c"�
    �!^^
    �! 	�!fz�!f�zW"�A�8
    �b��*�
    
    '('#B�&72��)	�6)	�6�)	

  • Glenn,

    The latest logs for DHCP after reprogramming do not show the disconnect during connect issue that the previous logs showed. Are you certain you received this event?

    Also, the log with the successful Static IP connection does not show a successful connection to the AP. It does show that the device is using a static IP, but it only shows that the device reaches the successful DEVICE INIT state (meaning sl_Start returned). After that, the log ends.

    Are you receiving the WLAN CONNECTED async event and the IP Acquired Events in your callbacks from the host driver?

    From what I'm seeing, I think an air capture will be necessary here to diagnose the issue quickly. Specifically, one that shows the 4-way handshake for WPA2 and the DHCP protocol.

    Best,

    Ben M

  • Hi Ben,

    The problem with the logs is we can't see what is being generated to check if we ran it properly. I'm guessing that the engineer just didn't actually connect to the network or that the connect process is not being sent to the log. We have to tack on a wire to get this data, that maybe an issue. We will try again to get you logs.

    There is no issues with the event notification...we are always able to connect with static (get events), but are still definitely unable to connect with DHCP.

    We don't have equipment for over the air capture, I will need to see how to do that.

    Are you unable to duplicate this on your side? It seems very straight forward using the network_terminal app for the CC3220SF. As an alternative path here, can you talk to one of the developers and ask what causes the error:  [WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0 ?  It would seem that there is only a limited number of possibilities as to what generated that error.

    Thanks, Glenn.

  • Hi Glenn,

    Yes I know it is not possible to confirm on your end that the event showed up in the logs, but if you see the event in your application it should be showing up. You can always let the logs run a bit longer after the event/issue occurs before stopping them. The device can continue printing and that won't be a problem for me when reviewing.

    We are not able to duplicate on our end. This is why I expect there is some dependency on the AP model/configuration or network. It is strange.

    The error should just be indicating that there was a disconnect during the connect process since the BSSID is not populated yet. This doesn't point to a specific root cause. From the original logs that you sent, I do not see the WPA2 4-way handshake completing.

    The sniffer would help us verify this and understand why. I do not see how it can be related to the DHCP setting at this point.

    Best Regards,

    Ben M

  • Hi Ben,

    We have rerun the logging for both the DHCP and the Static IP scenarios. This time when we captured the data, I had the WiFi chip on the debugger so that I could capture the console output as we were capturing the binary output for the log. The console report was as we have been observing. I have attached all four files below:

    First DHCP:

    7356.DHCP.log
    .$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$Biter
    )"++./����0#Bite>�=
    
    	<.$Seacr
    )"++./����0#Seac>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSTr
    )"++./����0#SDST>�=.$DIREr
    )"++./����0#DIRE>�=.$HP-Pr
    )"++./����0#HP-P>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST71��! |�$�Z`(\�B	v"yw"�
    x"
    y"
    �
    �"[�
    �"
    �"�c"X�
    �!
    �!�
    �!zz�!z�zW"�A
    ��*�
    
    '('#B�&72��M"΀�.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST)	��5NBj:5NBF;Fpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$CBCIr
    )"++./����0#CBCI>�=.$SDSTr
    )"++./����0#SDST>�=
    
    	r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggX�.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$xfinr
    )"++./����0#xfin>�=.$SDSCr
    )"++./����0#SDSC>�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST)	��5NB�V5NBzWFpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��
    
    	.6�)	�*]"<*�"
    Z"d�.*��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$Z8NJr
    )"++./����0#Z8NJ>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egX�*, -.X�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST71��%F$|�$�Z`(\�B	v"fw"�
    x"
    y"
    �
    �"[�
    �"�"t
    c"VT
    �!
    �!�
    �!zz�!z�zW"�A
    ��*�
    !
    '('#B�&72�JU"΀�.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggX�.$SDST.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$Seacr
    )"++./����0#Seac>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSTr
    )"++./����0#SDST>�=.$SDSCr
    )"++./����0#SDSC>�=.$Chror
    )"++./����0#Chro>�=.$DIREr
    )"++./����0#DIRE>�=.$HP-Pr
    )"++./����0#HP-P>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	)	��5NB�r5NB�sFpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$DIREr
    )"++./����0#DIRE>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	*, ggX�.$SDST.$SDST.$SDST.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$CBCIr
    )"++./����0#CBCI>�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST
    
    	71�*o(|�$�Z`(\�B	v"|w"�
    x"
    y"
    �
    �"[�
    �"
    �"�c"X�
    �!
    �!�
    �!zz�!z�zW"�A'��*�
    +
    '('#B'72��\"΀�.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST
    
    	.$SDST.$SDST.$SDST)	��5NB�5NB�Fpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��.6�)	��.**]"<*�"
    Z"d��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$xfinr
    )"++./����0#xfin>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"71�&��$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    
    �"
    �"
    �"
    c"
    �!cc
    �!
    �!z[�!z�[W"�A
    ��*�
    
    '(#B 72��"΀�71�&���$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    
    �"
    �"
    �"
    c"
    �!cc
    �!
    �!z[�!z�[W"�A���*�
    '
    '(#B 72��"΀�
    71�&���$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    
    �"
    �"
    �"
    c"
    �!cc
    �!
    �!z[�!z�[W"�A���*�
    1
    '(#B 72��"΀�)	2��!
    '�/sys/macadd.bin
    ��q
    -�,-��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:
    �
    '�/sys/dhcp.bin
    �y
    ��e(62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 1@@�>�(l	0O*�h�7G�
    �*� �{�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��K&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��=f�
    Bf�Gf-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*�fV
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	 
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�0
     17QR==�(�
    .2�3.'dt.'dt....:..'..?4*, de��*, ����.*, ,-`�*, `�.
    $...r2`aaA
    s6)	
    $)W$e�xV.
    �\��.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    "*"
     
    
    **")	��
    %NB�%NB�5��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.S6�)	�.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z" #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg(�*, -.X�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggL�.$SDST	0/�"�����SDST6�L)	��!
    �.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge�*, .-�9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSTr
    )"++./����0#SDST>�=.$SDS-r
    )"++./����0#SDS->�=.$SDSCr
    )"++./����0#SDSC>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egl�*, -.l�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggd�.$SDST.$SDST.$SDST71�k��$�Z`(\�B	v"
    w"!
    x"
    
    y"
    �
    �"R�
    �"
    �"�c"O�
    �!
    �!
    
    �!zz�!z�zW"�A'��*�
    
    '('#B�&72�i"΀�	0/�"�����SDST6�L)	��!
    �.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSTr
    )"++./����0#SDST>�=.$CBCIr
    )"++./����0#CBCI>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egH�*, -.H�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST)	��%NB�-%NB�.Fpn.$SDST.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��
    
    	.6�)	�*]"<*�"
    Z"d.$SDST�.*��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$DIREr
    )"++./����0#DIRE>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	.$SDST�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST
    
    	*, ggX�.$SDST.$SDST.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$HP-Pr
    )"++./����0#HP-P>�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, egP�*, -.P�*?"qr""
    )">�='�`9
     #y� -��$ y.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y.$SDST.$SDST.$SDST
    
    	*, ggX�71�	|�$�Z`(\�B	v"�w"
    �
    x"
    y"
    �
    
    �"[�
    �"
    �"�c"Xw
    �!
    �!
    �!zz�!z�zW"�A'��*�
    
    '('#B�&72��""΀�.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST	0/�"�����SDST6�L)	��!
    .�.*��r
    )";�� �:B��@">�=
    9)'�`9*, ge��*, .-��9GA"I�x�'�`9
    3
    "�\
    
    T��.S*]"<*�"
    Z"d.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$CBCIr
    )"++./����0#CBCI>�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z"d #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg\�*, -.\�*?"qr""
    )">�='�`9
     #y� -��$ y
    
    	.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST.$SDST?"qr""
    )">�=
     #y� -��$ y
    
    	.$SDST.$SDST.$SDST)	��%NB�V%NB�WFpn.$SDST.$SDST
    ��!
    9)'�`9*, ge��*, .-��.6�)	�*]"<*�"
    Z"d�.*��r
    )"5@">�=
    9)9GA"
    5	/�"����SDST6�L)	�2	�35��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.So�	.$Seacr
    )"++./����0#Seac>�=.$Z8NJr
    )"++./����0#Z8NJ>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSCr
    )"++./����0#SDSC>�=.$SDS-r
    )"++./����0#SDS->�=

    DHCPconsole.txt
    [Cortex_M4_0] 
    
    [SoftRoamingDisable] : Command error received: -14338
    
    
    
    	 ===============================
    	    SDS WIFI: 1.0.1.0
    	 ===============================
    	 CHIP: 0x31000019
    	 MAC:  2.0.0.0
    	 PHY:  2.2.0.6
    	 NWP:  3.9.0.6
    	 ROM:  0
    	 HOST: 3.0.1.46
    	 MAC address: 64:74:f6:04:00:1a
    	 ===============================
    
    WiFi Chip Software Version: X1.2.6.0
    
    Delete any old profiles...
    
    Configure for DHCP
    
    WiFi Connection Thread Started....
    WiFi Network Receive Thread Started....
    WiFi UART Receive Thread Started....
    
    Connect with: wlanconnect -s SDSTest -t WPA/WPA2 -p guardian
    
    
    
    [WLAN ERROR] Device disconnected from the AP: ,
    
    BSSID: 0:0:0:0:0:0
    
    sds_wifi> 
    
    
    [wlanconnect] : Failed to connect to AP: SDSTest
    
    
    
    
    
    [WLAN ERROR] Device disconnected from the AP: ,
    
    BSSID: 0:0:0:0:0:0
    
    sds_wifi> 
    Connect with: wlanconnect -s SDSTest -t WPA/WPA2 -p guardian
    
    
    
    [WLAN ERROR] Device disconnected from the AP: ,
    
    BSSID: 0:0:0:0:0:0
    
    sds_wifi> 
    
    
    [WLAN ERROR] Device disconnected from the AP: ,
    
    BSSID: 0:0:0:0:0:0
    
    sds_wifi> 
    
    
    [wlanconnect] : Failed to connect to AP: SDSTest
    
    
    
    
    
    [WLAN ERROR] Device disconnected from the AP: ,
    
    BSSID: 0:0:0:0:0:0
    
    sds_wifi> 
    Connect with: wlanconnect -s SDSTest -t WPA/WPA2 -p guardian
    
    
    
    [WLAN ERROR] Device disconnected from the AP: ,
    
    BSSID: 0:0:0:0:0:0
    
    sds_wifi> 

    then static IP:

    StaticIP.log
    71�&���$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    
    �"
    �"
    �"
    c"
    �!cc
    �!
    
    �!z[�!z�[W"�A���*�
    5
    '(#B 72��"΀�71�&���$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    
    �"
    �"
    �"
    c"
    �!cc
    �!
    �!z[�!z�[W"�A'��*�
    
    '(#B 72��"΀�
    71�&���$�Z`(\�B	
    v"
    w"
    x"
    y"
    �
    
    �"
    �"
    �"
    c"
    �!cc
    �!
    �!z[�!z�[W"�A���*�
    
    '(#B 72��"΀�)	2��!
    '�/sys/macadd.bin
    ��q
    -p,-��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:
    �
    '�/sys/dhcp.bin
    �y
    ��e(62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 1@@�>�(l	0O*�h�7G�
    �*� �{�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��?&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��1f�
    5f�:f-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*�E
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l 
    �
    ��	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	 
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�0
     17QR==�(�
    .2�3.'dt.'dt....:..'..?4*, de��*, ����.*, ,-`�*, `�.
    $...r2`aaA
    s6)	
    $)W$e�xV.
    �\��.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    "*"
     
    
    **")	2�
    .e$���������.e$����!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( Lc
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 1@@�>�(l	0O*�h�7G�
    �*� �{�B�1��
    �	��
    )
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �
    ��V&	�-���`�
    :i�:i:i
    �*�� *�� i*�f� 
    �
    �
    ��Hf�
    Mf�Qf-�	��`��s
    ��
    �r)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*�J�E
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
     �s B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`@-���`8
    �
    �
    �
    �
    �
    �
    �-���`��*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� 0�7�`DI � 7�`�i  7w@  �h
    2�`��	
    �
    � 	
    f�	
    g��	
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    	
    	�����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �"Ł�(
    
    ����PPPPPP P@P�PS�
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    -��q
    
    �-��q
    4-��q
    4-�	�q
    
    �:4Vdt2$�	
    �-���`D
    �-���`H��-���`P�
    �
    �-���`�����-���`��4-���`�4��.�4�-���`0
    
    ��-���`8
    �
    �
    �-�	��`��s
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � 	�.
    �
    ��
    �
    l *@$������������
    �
    �$����	
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B���.C
    .`
    �!
    '�/sys/p2p.cfg
    �o�
    ��
    g�	.�	
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3�0
     17QR==�(�
    .2�3.'dt.'dt....:..'..?4*, de��*, ����.*, ,-8�*, 8�.
    $...r2`aaA
    s6)	
    $)W$e�xV.
    �\��.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��DRNS�1"
    {
    )
    ")	��
    NB(*"
     
    
    **"%NB5��x������������5����������<����5������2��������
    �"SDST
    �Ix�'�`9
    3
    "�\
    
    T��.S6�)	�.$Z8NJr
    )"++./����0#Z8NJ>�=.$SDSTr
    )"++./����0#SDST>�=.$SDST
    H
    
    �"SDST
    �.$SDSTr
    )"++./����0#SDST>�=.$SDSCr
    )"++./����0#SDSC>�=.$SDS-r
    )"++./����0#SDS->�=r&&
    )"004'�
    "�+>�=�.� 
    8#SDST
    �L$SDSTM4'�
    "�+9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r)*]"<*�"
    Z" #�
    Tr
    )",,
    �>�=�	�.E��!."$� ���.#����......=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg�*, -.�*?"qr""
    )">�='�`9
     #y� -��$ y?"�r""
    )"
     #c� -��$ c>�=	'�`9�*>�=5	�	�A"�"����SDST6�L)	�
    �L$SDSTM*@$������������2�`����6%�)	%*w���2��N��b'�`9	*, ��*, gh��*, .4��*, ��*, hi��*, 4.��r.	!."B��)��-G$SDSTH$estI$J$� �K���.F*]"<*�"
    Z"d.3�.2�..-�
    ��
    �2�@���@82�b����ؤ� �!
    '�/tmp/table.arp
    �l�%-P,
    +./
    +.$SDST.-�l�%
    �-�l�%4-�l�%4�-�	l�%��2��V2�@���*]"<*�"
    Z"d*]"<*�"
    Z"d
    �
    *]"<*�"
    Z"d.$SDST*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d
    
    	�*]"<*�"
    Z"d
    
    	�
    �*]"<*�"
    Z"d
    
    	
    �*]"<*�"
    Z"d)	��� g�6)	)	��6)	)	��6)	)	���� �	6)	)	'�-T!'�4 6')	')	4�-T!4�
    �}����}�64)	4)	��6�4
    )	�4�
    �*]"<*�"
    Z"d*]"<*�"
    Z"d
    
    	��
    �*]"<*�"
    Z"d
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d./
    �*]"<*�"
    Z"d)	�6)	�6�)	�
    �*]"<*�"
    Z"d
    �*]"<*�"
    Z"d71���$�Z`(\�B	
    v"
    w",f�-
    x"!V
    y"
    �
    
    �"�"
    ��"c"p
    �!YY
    �!	
    �!zz�!z�zW"�A��
    �a��*�
    
    '('#B�&72��)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	)	�6)	�6�)	�
    �*]"<*�"
    Z"d?"�r""
    )"'�`9	>�=.	
     #c� -�+ c'�`9	
    �*]"<*�"
    Z"d71����$�Z`(\�B	
    v"
    w"!
    x"
    y"
    �
    �"�"
    �"c"p
    �!^c
    �!(	
    �!zz�!z�zW"�A��
    �d��*�
    '
    '('#B�&72��

    StaticConsole.txt
    [Cortex_M4_0] 
    
    [SoftRoamingDisable] : Command error received: -14338
    
    
    
    	 ===============================
    	    SDS WIFI: 1.0.1.0
    	 ===============================
    	 CHIP: 0x31000019
    	 MAC:  2.0.0.0
    	 PHY:  2.2.0.6
    	 NWP:  3.9.0.6
    	 ROM:  0
    	 HOST: 3.0.1.46
    	 MAC address: 64:74:f6:04:00:1a
    	 ===============================
    
    WiFi Chip Software Version: X1.2.6.0
    
    Delete any old profiles...
    
    Configure for DHCP
    
    WiFi Connection Thread Started....
    WiFi Network Receive Thread Started....
    WiFi UART Receive Thread Started....
    
    Connect with: wlanconnect -s SDSTest -t WPA/WPA2 -p guardian -ip 192.168.2.252 -gw 192.168.2.254
    
    
    
    [WLAN EVENT] STA Connected to the AP: SDSTest , BSSID: 14:cc:20:b2:a4:d8
    
    sds_wifi> 
    
    
    [NETAPP EVENT] IP set to: IPv4=192.168.2.252 , Gateway=192.168.2.254
    
    sds_wifi> 
    
    
    TCP Server is Running, Waiting for Connection.... 
    

  • Hi Glenn,

    The application logs are not quite what I expected. It appears you have modified the network terminal code for your application, is that correct? Is this running on a custom board or a launchpad?

    Can you double check the following two things -

    1) Does the connection succeed with DHCP running on a different board?

    2) Does the connection succeed if you run an application like the power_measurement example from the SDK?

    Thanks,
    Ben M

  • Hi Ben,

    Yes, we have modified the network terminal application. We have 4 threads: the nwp thread (no changes), a connection monitor thread, a WiFi network receive thread and a UART thread. The connection thread was described to Aaron in a previous response and the connection thread code is attached to that response.

    Our version of the network terminal is running on a custom board.

    For (1 and 2),  I will need to run these in the office with the development module.

    Also, can you describe to me what you mean by "not quite what I expected"? You sound like this should just be working for us. It may help me decipher what is wrong with our implementation if you can describe what is out of the ordinary in the logs.

    Thanks, Glenn.

  • Hi Ben,

    I went thru the power_management example and used its DHCP setup. I am still getting the same error condition. I have attached my setup function below, is there anything missing?

    int32_t SetupNetworkForDHCP(void)
    {
    int32_t RetVal;
    uint32_t ifBitmap;
    uint8_t configOpt;
    SlWlanPmPolicyParams_t PmPolicyParams;
    SlWlanRxFilterOperationCommandBuff_t rxFilterIdMask = { {0} };

    memset(&PmPolicyParams,0,sizeof(SlWlanPmPolicyParams_t));
    PmPolicyParams.MaxSleepTimeMs = 100;

    //make sure we are in station mode
    RetVal = sl_WlanSetMode(ROLE_STA);
    /* Restart NWP for this configuration */
    RetVal |= sl_Stop(SL_STOP_TIMEOUT);
    RetVal |= sl_Start(0, 0, 0);
    if (RetVal < 0) {
    /* Handle Error */
    return (-1);
    }

    //clear the connection status
    CLR_STATUS_BIT(app_CB.Status, STATUS_BIT_CONNECTION);
    CLR_STATUS_BIT(app_CB.Status, STATUS_BIT_IP_ACQUIRED);

    //disconnect from AP
    sl_WlanDisconnect(); //error if already disconnected

    //clear out any old profiles
    UART_PRINT("Delete any old profiles...\n\r");
    RetVal |= sl_WlanProfileDel(SL_WLAN_DEL_ALL_PROFILES);//error device not started

    ///disable IPV6
    ifBitmap = 0;
    RetVal |= sl_NetCfgSet(SL_NETCFG_IF, SL_NETCFG_IF_STATE, sizeof(ifBitmap), (uint8_t *)&ifBitmap);

    //disable scan
    configOpt = SL_WLAN_SCAN_POLICY(0,0);
    RetVal |= sl_WlanPolicySet(SL_WLAN_POLICY_SCAN, configOpt, NULL, 0);

    //unregister mDNS services
    RetVal |= sl_NetAppMDNSUnRegisterService(0, 0, 0);

    //remove all 64 filters (8*8)
    memset(rxFilterIdMask.FilterBitmap, 0xFF, 8);
    RetVal |= sl_WlanSet(SL_WLAN_RX_FILTERS_ID, SL_WLAN_RX_FILTER_REMOVE,
    sizeof(SlWlanRxFilterOperationCommandBuff_t), (uint8_t *)&rxFilterIdMask);

    //set PM policy to normal, Connection policy to (auto and fast)
    RetVal |= sl_WlanPolicySet(SL_WLAN_POLICY_PM, SL_WLAN_NORMAL_POLICY, NULL, 0);
    RetVal |= sl_WlanPolicySet(SL_WLAN_POLICY_CONNECTION, SL_WLAN_CONNECTION_POLICY(1, 1, 0, 0), NULL, 0);

    //Configure for DHCP with "fast renew feature" and "NO wait"
    UART_PRINT("Configure for DHCP\n\r");
    RetVal |= sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE, SL_NETCFG_ADDR_DHCP, 0, 0);
    RetVal |= sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE, SL_NETCFG_ADDR_ENABLE_FAST_RENEW, 0, 0);
    RetVal |= sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE, SL_NETCFG_ADDR_FAST_RENEW_MODE_NO_WAIT_ACK, 0, 0);

    /* Restart NWP for this configuration */
    RetVal |= sl_Stop(SL_STOP_TIMEOUT);
    RetVal |= sl_Start(0, 0, 0);
    if (RetVal < 0) {
    /* Handle Error */
    return (-1);
    }

    //set the configuration flag
    ConfiguredForDHCP = true;
    return(0);
    }

  • Hi Glenn,

    By that I meant that I could tell it wasn't just the network terminal example straight out of the box. I noticed quite a few modifications from your console output. 

    Thanks for confirming that the same behavior is observed with the network terminal.

    Please let me know if you are able to connect with DHCP on another device. Since you wen't through the process of re-flashing the board, I don't see how it could be an issue with the settings of the device in the file system. The serial flash is formatted when you reprogram with UniFlash. 

    All the results so far make me think that there is either a setting on the AP that we are missing causing this behavior or it is an issue with the 4-way handshake that would be visible in a sniffer capture.

    At the same time, I think it would be worthwhile for you to at least update your servicepack version to the latest to make sure you are running with the latest firmware for the network processsor. sp_v3.12.0.1_... is in the sdk_3_20_00_06. sp_v3.13.x.x will be releasing shortly in the next SDK.

    Best Regards,

    Ben M

  • Hi Ben,

    I installed:  simplelink_cc32xx_sdk_3_20_01_01 and it has not made any difference.

    I do not believe that it is an AP configuration issue. DHCP is working with all the other devices on the network except for the simplelink device. As for  the 4-way handshake, I am still working on getting an over-the-air capture. (obtaining tools).  I will also verify DHCP with the network terminal project when I am back in the office.

    Two followup topics:

    1) If we think it is something in my project, can I provide you my project and have you use it? Also, did you have a chance to look at the DHCP configure function I attached?  It matches what's in the example code.

    2) When we sent the last log/console files, did the log show any information on the "Device disconnected from the AP:"  error as seem on the console output?

    Thanks, Glenn.

  • Hi Ben,

    Just another observation. While I had the device connected using a Static IP, I disconnected the AP. The WiFi chip obviously didn't like that and attempted to reconnect. Since it couldn't find the AP it complained with the same error as with DHCP:

    [WLAN ERROR] Device disconnected from the AP: , BSSID: 0:0:0:0:0:0

    I would think that this would have been a different error....

  • Hi Glenn,

    1) Since it is happening with both the default examples and your code, I do not believe it is an issue with your application. I did look through the code you shared and it is our standard default configuration code. The only things you could potentially remove are the DHCP fast renew setting and the fast renew mode now wait ack. However, I don't think the issue is related to DHCP from your test results and the fact that the logs from the device show that the DHCP process has not even run when the disconnect event occurs (at the time of a failure).

    RetVal |= sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE, SL_NETCFG_ADDR_ENABLE_FAST_RENEW, 0, 0);
    RetVal |= sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE, SL_NETCFG_ADDR_FAST_RENEW_MODE_NO_WAIT_ACK, 0, 0);

    2) Yes, the logs indicate that the error was a disconnect during the connect event which to me points to an issue with the association process. The sniffer will show more details.

    The error is the same because all disconnect events reported by the network processor subsystem are sent through the SimpleLinkWlanEventHandler() callback. The implementation of this callback in the network terminal example simply checks if the disconnect was initiated by the application ("user") or not. Something I don't like about the example is that it notes this as an "error". It is an error in the sense that the disconnect was not intentional, but it is something that should be expected by the application and handled gracefully since there is no way to guarantee the operation of the AP the entire time the STA is running. Disconnect events should be expected. In terms of the all-zeros MAC address in the print, that indicates to me that the application control block "app_CB" is never being updated when a successful connection to the AP occurs. Please make sure this is running and that the application is saving the MAC address of the AP and it is not just that the NWP is reporting an all zero MAC address when the connection event occurs.

    Thanks!

    Ben M



  • Hi Ben,

    Your last 2 sentences seem rather important, can you explain them in more detail?

    "In terms of the all-zeros MAC address in the print, that indicates to me that the application control block "app_CB" is never being updated when a successful connection to the AP occurs. Please make sure this is running and that the application is saving the MAC address of the AP and it is not just that the NWP is reporting an all zero MAC address when the connection event occurs."

    What do you mean by "make sure this is running"?  

    Thanks, Glenn.

  • Hi Glenn,

    I don't believe that piece is too important. I'm simply pointing out that the disconnect event print will only contain a valid MAC address if the "SL_WLAN_EVENT_CONNECT" runs first. The app_CB.CON_CB.ConnectionSSID array is populated with a memcpy in that event. Otherwise, it will print 0s. For example, this happens if you have a disconnect during a connect event (because the connect never succeeded, the array is empty). After each disconnect, the memory is zeroed again.

    Best,

    Ben M