NRF54L15-DK : How to configured fully Radio Off/Disable ?

Hello Nordic Team,

Currently, we are performing power consumption testing using the Nordic nRF54L15-DK development kit.

As part of this, I aim to fully disable the Radio/RF module to evaluate baseline power usage.

To achieve this, I use the smoke_co example, which includes Matter functionality.

To disable the RF module, I attempted the following changes in the code:

/ Fully disable the nRF54L15-DK radio
void disable_radio()
{
    // Stop all radio tasks
    NRF_RADIO->TASKS_DISABLE = 1;

    // Wait until the radio is fully disabled
    while (NRF_RADIO->STATE != RADIO_STATE_STATE_Disabled)
    {
        k_msleep(1); // Wait for the radio to transition to the disabled state
    }

    // Stop the high-frequency clock
    //NRF_CLOCK->TASKS_LFCLKSTOP = 1;

    // Disable radio interrupts
    //NVIC_DisableIRQ(RADIO_1_IRQn);

	if(NRF_RADIO->EVENTS_DISABLED==1)
	{
		printk("Radio fully disabled.\n");
	}
}

void verify_radio_disabled()
{
    if (NRF_RADIO->STATE == RADIO_STATE_STATE_Disabled && NRF_RADIO->EVENTS_DISABLED == 1)
    {
        printk("Radio is fully disabled.\n");
    }
    else
    {
        printk("Radio is not fully disabled. STATE: %d, EVENTS_DISABLED: %d\n",
               NRF_RADIO->STATE, NRF_RADIO->EVENTS_DISABLED);
    }
}

in Overlay file,

&radio {
    status = "disabled";
};

Based on the code above, after calling disable_radio(), we observed the "Radio is fully disabled" message printed from the verify_radio_disabled() function.

After applying these changes, we attempted to pair the nRF device with the Matter OTBR. The device was successfully commissioned using the chip-tool.

After commissioning, we executed the descriptor read client-list 0x2233 0 command.
Received Matter stack-specific logs on the nRF console.

Kindly suggest how we can fully disable the RF/RADIO and how to enable it again.

Thanks & Regards,
Pratik Panchal

Parents
  • Hello,

    After disabling the radio using NRF_RADIO->TASKS_DISABLE = 1; and confirming RADIO interrupts are cleared after the radio is no longer active (what you have done in your code), you can try to disable the radio INTENCLR00 and INTENCLR01 interrupts  https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/radio.html#ariaid-title98 .

    void disable_radio()
    {
        // Stop all radio tasks
        NRF_RADIO->TASKS_DISABLE = 1;
    
        // Wait until the radio is fully disabled
        while (NRF_RADIO->STATE != RADIO_STATE_STATE_Disabled)
        {
            k_msleep(1); // Wait for the radio to transition to the disabled state
        }
    
        // Disable all radio interrupts
        NRF_RADIO->INTENCLR00 = 0xFFFFFFFF;
        NRF_RADIO->INTENCLR10 = 0xFFFFFFFF;
    
        // Optionally, disable the NVIC interrupt as well
        // NVIC_DisableIRQ(RADIO_1_IRQn);
    
        if (NRF_RADIO->EVENTS_DISABLED == 1)
        {
            printk("Radio fully disabled.\n");
        }
    }

  • Hello  

    Thank you for your response.

    Following your suggestion, I implemented the steps and updated the NRF code accordingly.
    I confirmed that RF was disabled by checking the console output
    "Radio is fully disabled.   <<<---------------------------<<< Fully Disable the Radio"  [**Check the attached log file]

    However, even after commissioning both the OTBR and NRF, I still receive responses when executing commands such as:
    smokecoalarm subscribe smoke-state 2 3 0x2232 1
    or
    descriptor read client-list 0x2233 0.

    This indicates that the RF is still enabled.

    Could you please provide suggestion on this ?

    **Please find attached logs.

    uart:~$ matter device factoryreset                                              
    Performing factory reset ...                                                    
    Done                                                                            
    uart:~$ I: 7959 [TS]Pending Last Known Good Time: 2023-10-14T01:16:48           
    I: 7967 [TS]Previous Last Known Good Time: 2023-10-14T01:16:48                  
    I: 7972 [TS]Reverted Last Known Good Time to previous value                     
    I: 7978 [DL]Performing factory reset                                            
    *** Booting My Application v3.0.0-8dc378c22285 ***                              
    *** Using nRF Connect SDK v3.0.0-3bfc46578e42 ***                               
    *** Using Zephyr OS v4.0.99-3e0ce7636fa6 ***                                    
                                                                                    
    *************************************                                           
    Other wake up cause 0x00000002.                                                 
    *************************************                                           
                                                                                    
    *************** [I2C] ****************                                          
                                                                                    
    I2C bus is ready!                                                               
    Scanning I2C bus...                                                             
                                                                                    
    uart:~$                                                                         
    I2C bus is ready!                                                               
    Scanning I2C bus...                                                             
                                                                                    
    **************************************                                          
    NRF_RADIO status ON...                                                          
    Radio is fully disabled.   <<<---------------------------<<< Fully Disable the Radio                                                        
    I: 10291 [DL]BLE address: D3:AB:EB:BB:48:75                                     
    D: Registered new test event: 0xffffffff80000000                                
    D: Registered new test event: 0xffffffff80010000                                
    I: 10306 [DL]CHIP task running                                                  
    I: Init CHIP stack                                                              
    I: 10311 [DL]OpenThread started: OK                                             
    I: 10315 [DL]Setting OpenThread device type to SLEEPY END DEVICE                
    I: 10321 [DL]The device does not support hardware protection against write.     
    D: Registered new test event: 0xffffffff00000000                                
    D: Registered new test event: 0xffffffff10000000                                
    I: 10336 [SVR]Subscription persistence not supported                            
    I: 10341 [SVR]Server initializing...                                            
    I: 10344 [TS]Last Known Good Time: [unknown]                                    
    I: 10348 [TS]Setting Last Known Good Time to firmware build time 2023-10-14T01:8
    I: 10357 [DMG]AccessControl: initializing                                       
    I: 10360 [DMG]Examples::AccessControlDelegate::Init                             
    I: 10365 [DMG]AccessControl: setting                                            
    I: 10368 [DMG]DefaultAclStorage: initializing                                   
    I: 10372 [DMG]DefaultAclStorage: 0 entries loaded                               
    D: 10377 [IN]UDP::Init bind&listen port=5540                                    
    E: 10381 [IN]IPV6_PKTINFO failed: 109                                           
    D: 10384 [IN]UDP::Init bound to port=5540                                       
    D: 10388 [IN]BLEBase::Init - setting/overriding transport                       
    D: 10393 [IN]TransportMgr initialized                                           
    D: 10399 [DL]Using Thread extended MAC for hostname.                            
    I: 10405 [ZCL]Using ZAP configuration...                                        
    I: 10409 [DMG]AccessControlCluster: initializing                                
    D: 10413 [DL]Boot reason: 6                                                     
    I: 10416 [ZCL]Initiating Admin Commissioning cluster.                           
    D: 10421 [IN]SecureSession[0x200047d8]: Allocated Type:1 LSID:37969             
    D: 10427 [DL]CHIPoBLE advertising set to on                                     
    I: 10431 [DIS]Updating services using commissioning mode 1                      
    E: 10436 [DIS]Failed to remove advertised services: 3                           
    D: 10441 [DL]Using Thread extended MAC for hostname.                            
    I: 10446 [DIS]Advertise commission parameter vendorID=65521 productID=32768 dis0
    E: 10455 [DIS]Failed to advertise commissionable node: 3                        
    E: 10460 [DIS]Failed to finalize service update: 3                              
    I: 10464 [DIS]Updating services using commissioning mode 1                      
    E: 10469 [DIS]Failed to remove advertised services: 3                           
    D: 10474 [DL]Using Thread extended MAC for hostname.                            
    I: 10479 [DIS]Advertise commission parameter vendorID=65521 productID=32768 dis0
    E: 10488 [DIS]Failed to advertise commissionable node: 3                        
    E: 10493 [DIS]Failed to finalize service update: 3                              
    I: 10498 [IN]CASE Server enabling CASE session setups                           
    D: 10503 [IN]SecureSession[0x200048b0]: Allocated Type:2 LSID:37970             
    I: 10510 [SVR]Joining Multicast groups                                          
    I: 10514 [SVR]Server Listening...                                               
    I: 10517 [DL]Device Configuration:                                              
    I: 10520 [DL]  Serial Number: 11223344556677889900                              
    I: 10524 [DL]  Vendor Id: 65521 (0xFFF1)                                        
    I: 10528 [DL]  Product Id: 32768 (0x8000)                                       
    I: 10532 [DL]  Product Name: not-specified                                      
    I: 10535 [DL]  Hardware Version: 0                                              
    I: 10538 [DL]  Setup Pin Code (0 for UNKNOWN/ERROR): 20202021                   
    I: 10544 [DL]  Setup Discriminator (0xFFFF for UNKNOWN/ERROR): 3840 (0xF00)     
    I: 10550 [DL]  Manufacturing Date: 2022-01-01                                   
    I: 10554 [DL]  Device Type: 65535 (0xFFFF)                                      
    I: 10558 [SVR]SetupQRCode: [MT:Y.K9042C00KA0648G00]                             
    I: 10563 [SVR]Copy/paste the below URL in a browser to see the QR Code:         
    I: 10569 [SVR]https://project-chip.github.io/connectedhomeip/qrcode.html?data=M0
    I: 10578 [SVR]Manual pairing code: [34970112332]                                
    E: 10583 [DL]Long dispatch time: 273 ms, for event type 2                       
    I: 10589 [DL]CHIPoBLE advertising started                                       
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                                                                            
    uart:~$ I: 30315 [DL]Current number of connections: 1/1                         
    I: 30319 [DL]BLE connection established (ConnId: 0x00)                          
    I: 30324 [DL]CHIPoBLE advertising stopped                                       
    D: 31649 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 31656 [BLE]local and remote recv window sizes = 5                            
    I: 31660 [BLE]selected BTP version 4                                            
    I: 31664 [BLE]using BTP fragment sizes rx 244 / tx 244.                         
    D: 31739 [DL]ConnId: 0x00, New CCCD value: 0x0002                               
    D: 31743 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 31750 [IN]BLE EndPoint 0x2000d620 Connection Complete                        
    I: 31755 [DL]CHIPoBLE connection established (ConnId: 0x00, GATT MTU: 247)      
    D: 31828 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 31838 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 31845 [EM]>>> [E:34378r S:0 M:134180033] (U) Msg RX from 0:0D41181CDFB7B0AE )
    I: 31860 [EM]<<< [E:34378r S:0 M:10922897] (U) Msg TX from 0000000000000000 to )
    D: 31875 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    I: 31882 [SVR]Commissioning session establishment step started                  
    D: 31963 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 31972 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 31979 [EM]>>> [E:34378r S:0 M:134180034] (U) Msg RX from 0:0D41181CDFB7B0AE )
    I: 32001 [EM]<<< [E:34378r S:0 M:10922898] (U) Msg TX from 0000000000000000 to )
    D: 32015 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32098 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32107 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32114 [EM]>>> [E:34378r S:0 M:134180035] (U) Msg RX from 0:0D41181CDFB7B0AE )
    I: 32128 [EM]<<< [E:34378r S:0 M:10922899] (U) Msg TX from 0000000000000000 to )
    D: 32143 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    I: 32151 [SC]SecureSession[0x200047d8, LSID:37969]: State change 'kEstablishing'
    D: 32160 [IN]SecureSession[0x200047d8]: Activated - Type:1 LSID:37969           
    D: 32166 [IN]New secure session activated for device <FFFFFFFB00000000, 0>, LSI!
    I: 32174 [SVR]Commissioning completed session establishment step                
    I: 32180 [DIS]Updating services using commissioning mode 0                      
    E: 32185 [DIS]Failed to remove advertised services: 3                           
    E: 32191 [DIS]Failed to finalize service update: 3                              
    D: 32195 [DL]CHIPoBLE advertising set to off                                    
    I: 32199 [SVR]Device completed Rendezvous process                               
    D: 32233 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32243 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32250 [EM]>>> [E:34379r S:37969 M:188998116] (S) Msg RX from 0:FFFFFFFB00000)
    D: 32264 [IM]Received Read request                                              
    I: 32280 [EM]<<< [E:34379r S:37969 M:3895728] (S) Msg TX from 0000000000000000 )
    D: 32293 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32368 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32376 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32458 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32468 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32475 [EM]>>> [E:34380r S:37969 M:188998117] (S) Msg RX from 0:FFFFFFFB00000)
    D: 32488 [IM]Received Read request                                              
    I: 32494 [EM]<<< [E:34380r S:37969 M:3895729] (S) Msg TX from 0000000000000000 )
    D: 32507 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32594 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32601 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32683 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32692 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32700 [EM]>>> [E:34381r S:37969 M:188998118] (S) Msg RX from 0:FFFFFFFB00000)
    I: 32714 [FS]GeneralCommissioning: Received ArmFailSafe (60s)                   
    I: 32720 [EM]<<< [E:34381r S:37969 M:3895730] (S) Msg TX from 0000000000000000 )
    D: 32735 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32818 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32827 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32835 [EM]>>> [E:34382r S:37969 M:188998119] (S) Msg RX from 0:FFFFFFFB00000)
    I: 32852 [EM]<<< [E:34382r S:37969 M:3895731] (S) Msg TX from 0000000000000000 )
    D: 32867 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32953 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32962 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32970 [EM]>>> [E:34383r S:37969 M:188998120] (S) Msg RX from 0:FFFFFFFB00000)
    I: 32984 [ZCL]OpCreds: Certificate Chain request received for PAI               
    I: 32991 [EM]<<< [E:34383r S:37969 M:3895732] (S) Msg TX from 0000000000000000 )
    D: 33005 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33089 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33096 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33179 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33186 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33268 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33277 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 33285 [EM]>>> [E:34384r S:37969 M:188998121] (S) Msg RX from 0:FFFFFFFB00000)
    I: 33299 [ZCL]OpCreds: Certificate Chain request received for DAC               
    I: 33306 [EM]<<< [E:34384r S:37969 M:3895733] (S) Msg TX from 0000000000000000 )
    D: 33320 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33494 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33501 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33584 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33591 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33673 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33682 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 33690 [EM]>>> [E:34385r S:37969 M:188998122] (S) Msg RX from 0:FFFFFFFB00000)
    I: 33704 [ZCL]OpCreds: Received an AttestationRequest command                   
    I: 33712 [ZCL]OpCreds: AttestationRequest successful.                           
    I: 33717 [EM]<<< [E:34385r S:37969 M:3895734] (S) Msg TX from 0000000000000000 )
    D: 33732 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33809 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33816 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33899 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33906 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33988 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33997 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34005 [EM]>>> [E:34386r S:37969 M:188998123] (S) Msg RX from 0:FFFFFFFB00000)
    I: 34020 [ZCL]OpCreds: Received a CSRRequest command                            
    I: 34039 [ZCL]OpCreds: AllocatePendingOperationalKey succeeded                  
    I: 34045 [ZCL]OpCreds: CSRRequest successful.                                   
    I: 34050 [EM]<<< [E:34386r S:37969 M:3895735] (S) Msg TX from 0000000000000000 )
    D: 34065 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 34124 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34131 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 34213 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34260 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    D: 34350 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34358 [EM]>>> [E:34387r S:37969 M:188998124] (S) Msg RX from 0:FFFFFFFB00000)
    I: 34372 [ZCL]OpCreds: Received an AddTrustedRootCertificate command            
    I: 34380 [ZCL]OpCreds: AddTrustedRootCertificate successful.                    
    I: 34386 [EM]<<< [E:34387r S:37969 M:3895736] (S) Msg TX from 0000000000000000 )
    D: 34400 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 34484 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34530 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    D: 34664 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    D: 34756 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34763 [EM]>>> [E:34388r S:37969 M:188998125] (S) Msg RX from 0:FFFFFFFB00000)
    I: 34778 [ZCL]OpCreds: Received an AddNOC command                               
    I: 34783 [FP]Validating NOC chain                                               
    I: 34790 [FP]NOC chain validation successful                                    
    I: 34794 [FP]Added new fabric at index: 0x1                                     
    I: 34798 [FP]Assigned compressed fabric ID: 0x8395AAD093FDA301, node ID: 0x00002
    I: 34806 [TS]Last Known Good Time: 2023-10-14T01:16:48                          
    I: 34811 [TS]New proposed Last Known Good Time: 2021-01-01T00:00:00             
    I: 34817 [TS]Retaining current Last Known Good Time                             
    I: 34832 [ZCL]OpCreds: ACL entry created for Fabric index 0x1 CASE Admin Subjec9
    D: 34840 [DL]Using Thread extended MAC for hostname.                            
    I: 34845 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    E: 34852 [SVR]Operational advertising failed: 3                                 
    I: 34856 [ZCL]OpCreds: successfully created fabric index 0x1 via AddNOC         
    I: 34863 [EM]<<< [E:34388r S:37969 M:3895737] (S) Msg TX from 0000000000000000 )
    D: 34878 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    E: 34885 [DL]Long dispatch time: 129 ms, for event type 16388                   
    D: 34934 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34943 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34951 [EM]>>> [E:34389r S:37969 M:188998126] (S) Msg RX from 1:FFFFFFFB00000)
    I: 34968 [EM]<<< [E:34389r S:37969 M:3895738] (S) Msg TX from 0000000000000000 )
    D: 34982 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 35069 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 35077 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 35085 [EM]>>> [E:34390r S:37969 M:188998127] (S) Msg RX from 1:FFFFFFFB00000)
    I: 35099 [FS]GeneralCommissioning: Received ArmFailSafe (164s)                  
    I: 35105 [EM]<<< [E:34390r S:37969 M:3895739] (S) Msg TX from 0000000000000000 )
    D: 35120 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 35204 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 35212 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 35220 [EM]>>> [E:34391r S:37969 M:188998128] (S) Msg RX from 1:FFFFFFFB00000)
    D: 35273 [DL]OpenThread State Changed (Flags: 0x1017c110)                       
    D: 35278 [DL]   Network Name: OpenThread-daa0                                   
    D: 35283 [DL]   PAN Id: 0xDAA0                                                  
    D: 35285 [DL]   Extended PAN Id: 0x3A502D6E6A1E150B                             
    D: 35290 [DL]   Channel: 16                                                     
    D: 35292 [DL]   Mesh Prefix: fdee:2893:f92d:6d2f::/64                           
    D: 35302 [DL]OpenThread State Changed (Flags: 0x1100100d)                       
    D: 35307 [DL]   Device Role: DETACHED                                           
    D: 35310 [DL]   Thread Unicast Addresses:                                       
    D: 35314 [DL]        fdee:2893:f92d:6d2f:5b36:558c:3015:580a/64 valid preferred 
    D: 35321 [DL]        fe80::c0bf:961a:16a8:fde1/64 valid preferred               
    I: 36277 [DL]SRP Client was started, detected server: fdee:2893:f92d:6d2f:0b9c:c
    I: 36285 [ZCL]ThreadDiagnosticsDelegate: OnConnectionStatusChanged              
    D: 36291 [DL]OpenThread State Changed (Flags: 0x200002a4)                       
    D: 36296 [DL]   Device Role: CHILD                                              
    D: 36299 [DL]   Partition Id: 0x2B1797D                                         
    D: 36307 [DL]OpenThread State Changed (Flags: 0x00000001)                       
    D: 36312 [DL]   Thread Unicast Addresses:                                       
    D: 36316 [DL]        fdba:1acc:a8a5:1:7be7:89d:d2f9:8f0b/64 valid preferred     
    D: 36322 [DL]        fdee:2893:f92d:6d2f:0:ff:fe00:bc02/64 valid preferred rloc 
    D: 36329 [DL]        fdee:2893:f92d:6d2f:5b36:558c:3015:580a/64 valid preferred 
    D: 36336 [DL]        fe80::c0bf:961a:16a8:fde1/64 valid preferred               
    I: 36347 [EM]<<< [E:34391r S:37969 M:3895740] (S) Msg TX from 0000000000000000 )
    D: 36361 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 36368 [DL]Using Thread extended MAC for hostname.                            
    I: 36373 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    E: 36380 [SVR]Operational advertising failed: 3                                 
    D: 36509 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 37157 [DL]SRP update succeeded                                               
    I: 37160 [SVR]Server initialization complete                                    
    I: 37164 [DIS]Updating services using commissioning mode 0                      
    D: 37169 [DL]Using Thread extended MAC for hostname.                            
    I: 37174 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    I: 37180 [DL]advertising srp service: 8395AAD093FDA301-0000000000002232._matterp
    I: 37188 [SWU]Stopping the watchdog timer                                       
    I: 37192 [SWU]Starting the periodic query timer, timeout: 86400 seconds         
    D: 37982 [DL]SRP update succeeded                                               
    D: 38984 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 39517 [EM]>>> [E:34392r S:0 M:134180036] (U) Msg RX from 0:AA29081A294BF079 )
    I: 39531 [IN]CASE Server received Sigma1 message . Starting handshake. EC 0x2000
    I: 39538 [EM]<<< [E:34392r S:0 M:10922900 (Ack:134180036)] (U) Msg TX from 0000)
    I: 39559 [SC]Received Sigma1 msg                                                
    I: 39565 [SC]CASE matched destination ID: fabricIndex 1, NodeID 0x00000000000022
    I: 39578 [EM]<<< [E:34392r S:0 M:10922901 (Ack:134180036)] (U) Msg TX from 0000)
    I: 39599 [EM]??1 [E:34392r S:0 M:10922901] (U) Msg Retransmission to 0:00000000]
    I: 39612 [SC]Sent Sigma2 msg                                                    
    I: 40418 [EM]>>> [E:34392r S:0 M:134180037 (Ack:10922901)] (U) Msg RX from 0:AA)
    I: 40433 [EM]<<< [E:34392r S:0 M:10922902 (Ack:134180037)] (U) Msg TX from 0000)
    I: 40454 [SC]Received Sigma3 msg                                                
    E: 40458 [SC]The device does not support GetClock_RealTimeMS() API: 3.  Fallinge
    I: 40481 [EM]<<< [E:34392r S:0 M:10922903 (Ack:134180037)] (U) Msg TX from 0000)
    I: 40502 [EM]??1 [E:34392r S:0 M:10922903] (U) Msg Retransmission to 0:00000000]
    I: 40516 [SC]SecureSession[0x200048b0, LSID:37970]: State change 'kEstablishing'
    D: 40524 [IN]SecureSession[0x200048b0]: Activated - Type:2 LSID:37970           
    D: 40530 [IN]New secure session activated for device <000000000001B669, 1>, LSI!
    I: 40539 [IN]CASE Session established to peer: <000000000001B669, 1>            
    D: 40545 [IN]SecureSession[0x20004988]: Allocated Type:2 LSID:37971             
    I: 40921 [EM]>>> [E:34393r S:37970 M:238011089] (S) Msg RX from 1:000000000001B)
    I: 40935 [FS]GeneralCommissioning: Received CommissioningComplete               
    I: 40950 [FP]Metadata for Fabric 0x1 persisted to storage.                      
    I: 40972 [TS]Committing Last Known Good Time to storage: 2023-10-14T01:16:48    
    I: 40981 [ZCL]OpCreds: Fabric index 0x1 was committed to storage. Compressed Fa1
    I: 40998 [FS]GeneralCommissioning: Successfully committed pending fabric data   
    I: 41005 [FS]Fail-safe cleanly disarmed                                         
    I: 41009 [EM]<<< [E:34393r S:37970 M:174442875 (Ack:238011089)] (S) Msg TX from)
    I: 41030 [EM]??1 [E:34393r S:37970 M:174442875] (S) Msg Retransmission to 1:000]
    I: 41043 [SWU]Device commissioned, schedule a default provider query            
    I: 41049 [SVR]Commissioning completed successfully                              
    I: 41054 [DIS]Updating services using commissioning mode 0                      
    D: 41059 [DL]Using Thread extended MAC for hostname.                            
    I: 41063 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    D: 41070 [DL]CHIPoBLE advertising set to off                                    
    D: 41074 [IN]Expiring all PASE sessions                                         
    D: 41078 [IN]SecureSession[0x200047d8]: MarkForEviction Type:1 LSID:37969       
    I: 41084 [SC]SecureSession[0x200047d8, LSID:37969]: State change 'kActive' --> '
    D: 41093 [IN]SecureSession[0x200047d8]: Released - Type:1 LSID:37969            
    D: 41099 [IN]Clearing BLE pending packets.                                      
    I: 41103 [BLE]Releasing end point's BLE connection back to application.         
    I: 41109 [DL]Closing BLE GATT connection (ConnId 00)                            
    D: 41116 [DL]ConnId: 0x00, New CCCD value: 0x0000                               
    I: 41121 [EM]>>> [E:34392r S:0 M:134180038 (Ack:10922903)] (U) Msg RX from 0:AA)
    I: 41234 [DL]Current number of connections: 0/1                                 
    I: 41238 [DL]BLE GAP connection terminated (reason 0x16)                        
    I: 41459 [EM]>>> [E:34393r S:37970 M:238011090 (Ack:174442875)] (S) Msg RX from)
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$ E: 71049 [SWU]No suitable OTA Provider candidate found                  
    I: 71054 [SWU]No provider available                                             
                                                                                    
    uart:~$ I: 110953 [EM]>>> [E:34394r S:37970 M:238011091] (S) Msg RX from 1:0000)
    D: 110967 [IM]Received Subscribe request                                        
    I: 110971 [DMG]Final negotiated min/max parameters: Min = 2s, Max = 300s        
    I: 110978 [EM]<<< [E:34394r S:37970 M:174442876 (Ack:238011091)] (S) Msg TX fro)
    I: 110998 [EM]??1 [E:34394r S:37970 M:174442876] (S) Msg Retransmission to 1:00]
                                                                                    
    uart:~$                                                                         
    uart:~$ I: 111452 [EM]>>> [E:34394r S:37970 M:238011092 (Ack:174442876)] (S) Ms)
    I: 111467 [IM]Received status response, status is 0x00                          
    I: 111472 [EM]<<< [E:34394r S:37970 M:174442877 (Ack:238011092)] (S) Msg TX fro)
    I: 111493 [EM]??1 [E:34394r S:37970 M:174442877] (S) Msg Retransmission to 1:00]
    I: 111506 [DMG]Registered a ReadHandler that will schedule a report between sys.
    I: 111942 [EM]>>> [E:34394r S:37970 M:238011093 (Ack:174442877)] (S) Msg RX fro)
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$ I: 206457 [EM]>>> [E:34395r S:37970 M:238011094] (S) Msg RX from 1:0000)
    D: 206471 [IM]Received Subscribe request                                        
    I: 206475 [IM]Deleting previous subscription from NodeId: 000000000001B669, Fab1
    I: 206483 [DMG]Subscription id 0x164b8d93 from node <000000000001B669, 1> torn n
    I: 206490 [DMG]Final negotiated min/max parameters: Min = 2s, Max = 300s        
    I: 206498 [EM]<<< [E:34395r S:37970 M:174442878 (Ack:238011094)] (S) Msg TX fro)
    I: 206518 [EM]??1 [E:34395r S:37970 M:174442878] (S) Msg Retransmission to 1:00]
    I: 206946 [EM]>>> [E:34395r S:37970 M:238011095 (Ack:174442878)] (S) Msg RX fro)
    I: 206961 [IM]Received status response, status is 0x00                          
    I: 206967 [EM]<<< [E:34395r S:37970 M:174442879 (Ack:238011095)] (S) Msg TX fro)
    I: 206987 [EM]??1 [E:34395r S:37970 M:174442879] (S) Msg Retransmission to 1:00]
    I: 207000 [DMG]Registered a ReadHandler that will schedule a report between sys.
    I: 207456 [EM]>>> [E:34395r S:37970 M:238011096 (Ack:174442879)] (S) Msg RX fro)
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$ 
    


    Thanks & Regards,
    Pratik Panchal

Reply
  • Hello  

    Thank you for your response.

    Following your suggestion, I implemented the steps and updated the NRF code accordingly.
    I confirmed that RF was disabled by checking the console output
    "Radio is fully disabled.   <<<---------------------------<<< Fully Disable the Radio"  [**Check the attached log file]

    However, even after commissioning both the OTBR and NRF, I still receive responses when executing commands such as:
    smokecoalarm subscribe smoke-state 2 3 0x2232 1
    or
    descriptor read client-list 0x2233 0.

    This indicates that the RF is still enabled.

    Could you please provide suggestion on this ?

    **Please find attached logs.

    uart:~$ matter device factoryreset                                              
    Performing factory reset ...                                                    
    Done                                                                            
    uart:~$ I: 7959 [TS]Pending Last Known Good Time: 2023-10-14T01:16:48           
    I: 7967 [TS]Previous Last Known Good Time: 2023-10-14T01:16:48                  
    I: 7972 [TS]Reverted Last Known Good Time to previous value                     
    I: 7978 [DL]Performing factory reset                                            
    *** Booting My Application v3.0.0-8dc378c22285 ***                              
    *** Using nRF Connect SDK v3.0.0-3bfc46578e42 ***                               
    *** Using Zephyr OS v4.0.99-3e0ce7636fa6 ***                                    
                                                                                    
    *************************************                                           
    Other wake up cause 0x00000002.                                                 
    *************************************                                           
                                                                                    
    *************** [I2C] ****************                                          
                                                                                    
    I2C bus is ready!                                                               
    Scanning I2C bus...                                                             
                                                                                    
    uart:~$                                                                         
    I2C bus is ready!                                                               
    Scanning I2C bus...                                                             
                                                                                    
    **************************************                                          
    NRF_RADIO status ON...                                                          
    Radio is fully disabled.   <<<---------------------------<<< Fully Disable the Radio                                                        
    I: 10291 [DL]BLE address: D3:AB:EB:BB:48:75                                     
    D: Registered new test event: 0xffffffff80000000                                
    D: Registered new test event: 0xffffffff80010000                                
    I: 10306 [DL]CHIP task running                                                  
    I: Init CHIP stack                                                              
    I: 10311 [DL]OpenThread started: OK                                             
    I: 10315 [DL]Setting OpenThread device type to SLEEPY END DEVICE                
    I: 10321 [DL]The device does not support hardware protection against write.     
    D: Registered new test event: 0xffffffff00000000                                
    D: Registered new test event: 0xffffffff10000000                                
    I: 10336 [SVR]Subscription persistence not supported                            
    I: 10341 [SVR]Server initializing...                                            
    I: 10344 [TS]Last Known Good Time: [unknown]                                    
    I: 10348 [TS]Setting Last Known Good Time to firmware build time 2023-10-14T01:8
    I: 10357 [DMG]AccessControl: initializing                                       
    I: 10360 [DMG]Examples::AccessControlDelegate::Init                             
    I: 10365 [DMG]AccessControl: setting                                            
    I: 10368 [DMG]DefaultAclStorage: initializing                                   
    I: 10372 [DMG]DefaultAclStorage: 0 entries loaded                               
    D: 10377 [IN]UDP::Init bind&listen port=5540                                    
    E: 10381 [IN]IPV6_PKTINFO failed: 109                                           
    D: 10384 [IN]UDP::Init bound to port=5540                                       
    D: 10388 [IN]BLEBase::Init - setting/overriding transport                       
    D: 10393 [IN]TransportMgr initialized                                           
    D: 10399 [DL]Using Thread extended MAC for hostname.                            
    I: 10405 [ZCL]Using ZAP configuration...                                        
    I: 10409 [DMG]AccessControlCluster: initializing                                
    D: 10413 [DL]Boot reason: 6                                                     
    I: 10416 [ZCL]Initiating Admin Commissioning cluster.                           
    D: 10421 [IN]SecureSession[0x200047d8]: Allocated Type:1 LSID:37969             
    D: 10427 [DL]CHIPoBLE advertising set to on                                     
    I: 10431 [DIS]Updating services using commissioning mode 1                      
    E: 10436 [DIS]Failed to remove advertised services: 3                           
    D: 10441 [DL]Using Thread extended MAC for hostname.                            
    I: 10446 [DIS]Advertise commission parameter vendorID=65521 productID=32768 dis0
    E: 10455 [DIS]Failed to advertise commissionable node: 3                        
    E: 10460 [DIS]Failed to finalize service update: 3                              
    I: 10464 [DIS]Updating services using commissioning mode 1                      
    E: 10469 [DIS]Failed to remove advertised services: 3                           
    D: 10474 [DL]Using Thread extended MAC for hostname.                            
    I: 10479 [DIS]Advertise commission parameter vendorID=65521 productID=32768 dis0
    E: 10488 [DIS]Failed to advertise commissionable node: 3                        
    E: 10493 [DIS]Failed to finalize service update: 3                              
    I: 10498 [IN]CASE Server enabling CASE session setups                           
    D: 10503 [IN]SecureSession[0x200048b0]: Allocated Type:2 LSID:37970             
    I: 10510 [SVR]Joining Multicast groups                                          
    I: 10514 [SVR]Server Listening...                                               
    I: 10517 [DL]Device Configuration:                                              
    I: 10520 [DL]  Serial Number: 11223344556677889900                              
    I: 10524 [DL]  Vendor Id: 65521 (0xFFF1)                                        
    I: 10528 [DL]  Product Id: 32768 (0x8000)                                       
    I: 10532 [DL]  Product Name: not-specified                                      
    I: 10535 [DL]  Hardware Version: 0                                              
    I: 10538 [DL]  Setup Pin Code (0 for UNKNOWN/ERROR): 20202021                   
    I: 10544 [DL]  Setup Discriminator (0xFFFF for UNKNOWN/ERROR): 3840 (0xF00)     
    I: 10550 [DL]  Manufacturing Date: 2022-01-01                                   
    I: 10554 [DL]  Device Type: 65535 (0xFFFF)                                      
    I: 10558 [SVR]SetupQRCode: [MT:Y.K9042C00KA0648G00]                             
    I: 10563 [SVR]Copy/paste the below URL in a browser to see the QR Code:         
    I: 10569 [SVR]https://project-chip.github.io/connectedhomeip/qrcode.html?data=M0
    I: 10578 [SVR]Manual pairing code: [34970112332]                                
    E: 10583 [DL]Long dispatch time: 273 ms, for event type 2                       
    I: 10589 [DL]CHIPoBLE advertising started                                       
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                                                                            
    uart:~$ I: 30315 [DL]Current number of connections: 1/1                         
    I: 30319 [DL]BLE connection established (ConnId: 0x00)                          
    I: 30324 [DL]CHIPoBLE advertising stopped                                       
    D: 31649 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 31656 [BLE]local and remote recv window sizes = 5                            
    I: 31660 [BLE]selected BTP version 4                                            
    I: 31664 [BLE]using BTP fragment sizes rx 244 / tx 244.                         
    D: 31739 [DL]ConnId: 0x00, New CCCD value: 0x0002                               
    D: 31743 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 31750 [IN]BLE EndPoint 0x2000d620 Connection Complete                        
    I: 31755 [DL]CHIPoBLE connection established (ConnId: 0x00, GATT MTU: 247)      
    D: 31828 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 31838 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 31845 [EM]>>> [E:34378r S:0 M:134180033] (U) Msg RX from 0:0D41181CDFB7B0AE )
    I: 31860 [EM]<<< [E:34378r S:0 M:10922897] (U) Msg TX from 0000000000000000 to )
    D: 31875 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    I: 31882 [SVR]Commissioning session establishment step started                  
    D: 31963 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 31972 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 31979 [EM]>>> [E:34378r S:0 M:134180034] (U) Msg RX from 0:0D41181CDFB7B0AE )
    I: 32001 [EM]<<< [E:34378r S:0 M:10922898] (U) Msg TX from 0000000000000000 to )
    D: 32015 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32098 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32107 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32114 [EM]>>> [E:34378r S:0 M:134180035] (U) Msg RX from 0:0D41181CDFB7B0AE )
    I: 32128 [EM]<<< [E:34378r S:0 M:10922899] (U) Msg TX from 0000000000000000 to )
    D: 32143 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    I: 32151 [SC]SecureSession[0x200047d8, LSID:37969]: State change 'kEstablishing'
    D: 32160 [IN]SecureSession[0x200047d8]: Activated - Type:1 LSID:37969           
    D: 32166 [IN]New secure session activated for device <FFFFFFFB00000000, 0>, LSI!
    I: 32174 [SVR]Commissioning completed session establishment step                
    I: 32180 [DIS]Updating services using commissioning mode 0                      
    E: 32185 [DIS]Failed to remove advertised services: 3                           
    E: 32191 [DIS]Failed to finalize service update: 3                              
    D: 32195 [DL]CHIPoBLE advertising set to off                                    
    I: 32199 [SVR]Device completed Rendezvous process                               
    D: 32233 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32243 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32250 [EM]>>> [E:34379r S:37969 M:188998116] (S) Msg RX from 0:FFFFFFFB00000)
    D: 32264 [IM]Received Read request                                              
    I: 32280 [EM]<<< [E:34379r S:37969 M:3895728] (S) Msg TX from 0000000000000000 )
    D: 32293 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32368 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32376 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32458 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32468 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32475 [EM]>>> [E:34380r S:37969 M:188998117] (S) Msg RX from 0:FFFFFFFB00000)
    D: 32488 [IM]Received Read request                                              
    I: 32494 [EM]<<< [E:34380r S:37969 M:3895729] (S) Msg TX from 0000000000000000 )
    D: 32507 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32594 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32601 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32683 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32692 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32700 [EM]>>> [E:34381r S:37969 M:188998118] (S) Msg RX from 0:FFFFFFFB00000)
    I: 32714 [FS]GeneralCommissioning: Received ArmFailSafe (60s)                   
    I: 32720 [EM]<<< [E:34381r S:37969 M:3895730] (S) Msg TX from 0000000000000000 )
    D: 32735 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32818 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32827 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32835 [EM]>>> [E:34382r S:37969 M:188998119] (S) Msg RX from 0:FFFFFFFB00000)
    I: 32852 [EM]<<< [E:34382r S:37969 M:3895731] (S) Msg TX from 0000000000000000 )
    D: 32867 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 32953 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 32962 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 32970 [EM]>>> [E:34383r S:37969 M:188998120] (S) Msg RX from 0:FFFFFFFB00000)
    I: 32984 [ZCL]OpCreds: Certificate Chain request received for PAI               
    I: 32991 [EM]<<< [E:34383r S:37969 M:3895732] (S) Msg TX from 0000000000000000 )
    D: 33005 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33089 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33096 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33179 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33186 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33268 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33277 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 33285 [EM]>>> [E:34384r S:37969 M:188998121] (S) Msg RX from 0:FFFFFFFB00000)
    I: 33299 [ZCL]OpCreds: Certificate Chain request received for DAC               
    I: 33306 [EM]<<< [E:34384r S:37969 M:3895733] (S) Msg TX from 0000000000000000 )
    D: 33320 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33494 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33501 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33584 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33591 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33673 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33682 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 33690 [EM]>>> [E:34385r S:37969 M:188998122] (S) Msg RX from 0:FFFFFFFB00000)
    I: 33704 [ZCL]OpCreds: Received an AttestationRequest command                   
    I: 33712 [ZCL]OpCreds: AttestationRequest successful.                           
    I: 33717 [EM]<<< [E:34385r S:37969 M:3895734] (S) Msg TX from 0000000000000000 )
    D: 33732 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33809 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33816 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33899 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33906 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 33988 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 33997 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34005 [EM]>>> [E:34386r S:37969 M:188998123] (S) Msg RX from 0:FFFFFFFB00000)
    I: 34020 [ZCL]OpCreds: Received a CSRRequest command                            
    I: 34039 [ZCL]OpCreds: AllocatePendingOperationalKey succeeded                  
    I: 34045 [ZCL]OpCreds: CSRRequest successful.                                   
    I: 34050 [EM]<<< [E:34386r S:37969 M:3895735] (S) Msg TX from 0000000000000000 )
    D: 34065 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 34124 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34131 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 34213 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34260 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    D: 34350 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34358 [EM]>>> [E:34387r S:37969 M:188998124] (S) Msg RX from 0:FFFFFFFB00000)
    I: 34372 [ZCL]OpCreds: Received an AddTrustedRootCertificate command            
    I: 34380 [ZCL]OpCreds: AddTrustedRootCertificate successful.                    
    I: 34386 [EM]<<< [E:34387r S:37969 M:3895736] (S) Msg TX from 0000000000000000 )
    D: 34400 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 34484 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34530 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    D: 34664 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    D: 34756 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34763 [EM]>>> [E:34388r S:37969 M:188998125] (S) Msg RX from 0:FFFFFFFB00000)
    I: 34778 [ZCL]OpCreds: Received an AddNOC command                               
    I: 34783 [FP]Validating NOC chain                                               
    I: 34790 [FP]NOC chain validation successful                                    
    I: 34794 [FP]Added new fabric at index: 0x1                                     
    I: 34798 [FP]Assigned compressed fabric ID: 0x8395AAD093FDA301, node ID: 0x00002
    I: 34806 [TS]Last Known Good Time: 2023-10-14T01:16:48                          
    I: 34811 [TS]New proposed Last Known Good Time: 2021-01-01T00:00:00             
    I: 34817 [TS]Retaining current Last Known Good Time                             
    I: 34832 [ZCL]OpCreds: ACL entry created for Fabric index 0x1 CASE Admin Subjec9
    D: 34840 [DL]Using Thread extended MAC for hostname.                            
    I: 34845 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    E: 34852 [SVR]Operational advertising failed: 3                                 
    I: 34856 [ZCL]OpCreds: successfully created fabric index 0x1 via AddNOC         
    I: 34863 [EM]<<< [E:34388r S:37969 M:3895737] (S) Msg TX from 0000000000000000 )
    D: 34878 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    E: 34885 [DL]Long dispatch time: 129 ms, for event type 16388                   
    D: 34934 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 34943 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 34951 [EM]>>> [E:34389r S:37969 M:188998126] (S) Msg RX from 1:FFFFFFFB00000)
    I: 34968 [EM]<<< [E:34389r S:37969 M:3895738] (S) Msg TX from 0000000000000000 )
    D: 34982 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 35069 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 35077 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 35085 [EM]>>> [E:34390r S:37969 M:188998127] (S) Msg RX from 1:FFFFFFFB00000)
    I: 35099 [FS]GeneralCommissioning: Received ArmFailSafe (164s)                  
    I: 35105 [EM]<<< [E:34390r S:37969 M:3895739] (S) Msg TX from 0000000000000000 )
    D: 35120 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 35204 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 35212 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 35220 [EM]>>> [E:34391r S:37969 M:188998128] (S) Msg RX from 1:FFFFFFFB00000)
    D: 35273 [DL]OpenThread State Changed (Flags: 0x1017c110)                       
    D: 35278 [DL]   Network Name: OpenThread-daa0                                   
    D: 35283 [DL]   PAN Id: 0xDAA0                                                  
    D: 35285 [DL]   Extended PAN Id: 0x3A502D6E6A1E150B                             
    D: 35290 [DL]   Channel: 16                                                     
    D: 35292 [DL]   Mesh Prefix: fdee:2893:f92d:6d2f::/64                           
    D: 35302 [DL]OpenThread State Changed (Flags: 0x1100100d)                       
    D: 35307 [DL]   Device Role: DETACHED                                           
    D: 35310 [DL]   Thread Unicast Addresses:                                       
    D: 35314 [DL]        fdee:2893:f92d:6d2f:5b36:558c:3015:580a/64 valid preferred 
    D: 35321 [DL]        fe80::c0bf:961a:16a8:fde1/64 valid preferred               
    I: 36277 [DL]SRP Client was started, detected server: fdee:2893:f92d:6d2f:0b9c:c
    I: 36285 [ZCL]ThreadDiagnosticsDelegate: OnConnectionStatusChanged              
    D: 36291 [DL]OpenThread State Changed (Flags: 0x200002a4)                       
    D: 36296 [DL]   Device Role: CHILD                                              
    D: 36299 [DL]   Partition Id: 0x2B1797D                                         
    D: 36307 [DL]OpenThread State Changed (Flags: 0x00000001)                       
    D: 36312 [DL]   Thread Unicast Addresses:                                       
    D: 36316 [DL]        fdba:1acc:a8a5:1:7be7:89d:d2f9:8f0b/64 valid preferred     
    D: 36322 [DL]        fdee:2893:f92d:6d2f:0:ff:fe00:bc02/64 valid preferred rloc 
    D: 36329 [DL]        fdee:2893:f92d:6d2f:5b36:558c:3015:580a/64 valid preferred 
    D: 36336 [DL]        fe80::c0bf:961a:16a8:fde1/64 valid preferred               
    I: 36347 [EM]<<< [E:34391r S:37969 M:3895740] (S) Msg TX from 0000000000000000 )
    D: 36361 [DL]Sending indication for CHIPoBLE TX characteristic (ConnId 00, len )
    D: 36368 [DL]Using Thread extended MAC for hostname.                            
    I: 36373 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    E: 36380 [SVR]Operational advertising failed: 3                                 
    D: 36509 [DL]Indication for CHIPoBLE TX characteristic done (ConnId 0x00, resul)
    D: 37157 [DL]SRP update succeeded                                               
    I: 37160 [SVR]Server initialization complete                                    
    I: 37164 [DIS]Updating services using commissioning mode 0                      
    D: 37169 [DL]Using Thread extended MAC for hostname.                            
    I: 37174 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    I: 37180 [DL]advertising srp service: 8395AAD093FDA301-0000000000002232._matterp
    I: 37188 [SWU]Stopping the watchdog timer                                       
    I: 37192 [SWU]Starting the periodic query timer, timeout: 86400 seconds         
    D: 37982 [DL]SRP update succeeded                                               
    D: 38984 [DL]Write request received for CHIPoBLE RX characteristic (ConnId 0x00)
    I: 39517 [EM]>>> [E:34392r S:0 M:134180036] (U) Msg RX from 0:AA29081A294BF079 )
    I: 39531 [IN]CASE Server received Sigma1 message . Starting handshake. EC 0x2000
    I: 39538 [EM]<<< [E:34392r S:0 M:10922900 (Ack:134180036)] (U) Msg TX from 0000)
    I: 39559 [SC]Received Sigma1 msg                                                
    I: 39565 [SC]CASE matched destination ID: fabricIndex 1, NodeID 0x00000000000022
    I: 39578 [EM]<<< [E:34392r S:0 M:10922901 (Ack:134180036)] (U) Msg TX from 0000)
    I: 39599 [EM]??1 [E:34392r S:0 M:10922901] (U) Msg Retransmission to 0:00000000]
    I: 39612 [SC]Sent Sigma2 msg                                                    
    I: 40418 [EM]>>> [E:34392r S:0 M:134180037 (Ack:10922901)] (U) Msg RX from 0:AA)
    I: 40433 [EM]<<< [E:34392r S:0 M:10922902 (Ack:134180037)] (U) Msg TX from 0000)
    I: 40454 [SC]Received Sigma3 msg                                                
    E: 40458 [SC]The device does not support GetClock_RealTimeMS() API: 3.  Fallinge
    I: 40481 [EM]<<< [E:34392r S:0 M:10922903 (Ack:134180037)] (U) Msg TX from 0000)
    I: 40502 [EM]??1 [E:34392r S:0 M:10922903] (U) Msg Retransmission to 0:00000000]
    I: 40516 [SC]SecureSession[0x200048b0, LSID:37970]: State change 'kEstablishing'
    D: 40524 [IN]SecureSession[0x200048b0]: Activated - Type:2 LSID:37970           
    D: 40530 [IN]New secure session activated for device <000000000001B669, 1>, LSI!
    I: 40539 [IN]CASE Session established to peer: <000000000001B669, 1>            
    D: 40545 [IN]SecureSession[0x20004988]: Allocated Type:2 LSID:37971             
    I: 40921 [EM]>>> [E:34393r S:37970 M:238011089] (S) Msg RX from 1:000000000001B)
    I: 40935 [FS]GeneralCommissioning: Received CommissioningComplete               
    I: 40950 [FP]Metadata for Fabric 0x1 persisted to storage.                      
    I: 40972 [TS]Committing Last Known Good Time to storage: 2023-10-14T01:16:48    
    I: 40981 [ZCL]OpCreds: Fabric index 0x1 was committed to storage. Compressed Fa1
    I: 40998 [FS]GeneralCommissioning: Successfully committed pending fabric data   
    I: 41005 [FS]Fail-safe cleanly disarmed                                         
    I: 41009 [EM]<<< [E:34393r S:37970 M:174442875 (Ack:238011089)] (S) Msg TX from)
    I: 41030 [EM]??1 [E:34393r S:37970 M:174442875] (S) Msg Retransmission to 1:000]
    I: 41043 [SWU]Device commissioned, schedule a default provider query            
    I: 41049 [SVR]Commissioning completed successfully                              
    I: 41054 [DIS]Updating services using commissioning mode 0                      
    D: 41059 [DL]Using Thread extended MAC for hostname.                            
    I: 41063 [DIS]Advertise operational node 8395AAD093FDA301-0000000000002232      
    D: 41070 [DL]CHIPoBLE advertising set to off                                    
    D: 41074 [IN]Expiring all PASE sessions                                         
    D: 41078 [IN]SecureSession[0x200047d8]: MarkForEviction Type:1 LSID:37969       
    I: 41084 [SC]SecureSession[0x200047d8, LSID:37969]: State change 'kActive' --> '
    D: 41093 [IN]SecureSession[0x200047d8]: Released - Type:1 LSID:37969            
    D: 41099 [IN]Clearing BLE pending packets.                                      
    I: 41103 [BLE]Releasing end point's BLE connection back to application.         
    I: 41109 [DL]Closing BLE GATT connection (ConnId 00)                            
    D: 41116 [DL]ConnId: 0x00, New CCCD value: 0x0000                               
    I: 41121 [EM]>>> [E:34392r S:0 M:134180038 (Ack:10922903)] (U) Msg RX from 0:AA)
    I: 41234 [DL]Current number of connections: 0/1                                 
    I: 41238 [DL]BLE GAP connection terminated (reason 0x16)                        
    I: 41459 [EM]>>> [E:34393r S:37970 M:238011090 (Ack:174442875)] (S) Msg RX from)
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$ E: 71049 [SWU]No suitable OTA Provider candidate found                  
    I: 71054 [SWU]No provider available                                             
                                                                                    
    uart:~$ I: 110953 [EM]>>> [E:34394r S:37970 M:238011091] (S) Msg RX from 1:0000)
    D: 110967 [IM]Received Subscribe request                                        
    I: 110971 [DMG]Final negotiated min/max parameters: Min = 2s, Max = 300s        
    I: 110978 [EM]<<< [E:34394r S:37970 M:174442876 (Ack:238011091)] (S) Msg TX fro)
    I: 110998 [EM]??1 [E:34394r S:37970 M:174442876] (S) Msg Retransmission to 1:00]
                                                                                    
    uart:~$                                                                         
    uart:~$ I: 111452 [EM]>>> [E:34394r S:37970 M:238011092 (Ack:174442876)] (S) Ms)
    I: 111467 [IM]Received status response, status is 0x00                          
    I: 111472 [EM]<<< [E:34394r S:37970 M:174442877 (Ack:238011092)] (S) Msg TX fro)
    I: 111493 [EM]??1 [E:34394r S:37970 M:174442877] (S) Msg Retransmission to 1:00]
    I: 111506 [DMG]Registered a ReadHandler that will schedule a report between sys.
    I: 111942 [EM]>>> [E:34394r S:37970 M:238011093 (Ack:174442877)] (S) Msg RX fro)
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$ I: 206457 [EM]>>> [E:34395r S:37970 M:238011094] (S) Msg RX from 1:0000)
    D: 206471 [IM]Received Subscribe request                                        
    I: 206475 [IM]Deleting previous subscription from NodeId: 000000000001B669, Fab1
    I: 206483 [DMG]Subscription id 0x164b8d93 from node <000000000001B669, 1> torn n
    I: 206490 [DMG]Final negotiated min/max parameters: Min = 2s, Max = 300s        
    I: 206498 [EM]<<< [E:34395r S:37970 M:174442878 (Ack:238011094)] (S) Msg TX fro)
    I: 206518 [EM]??1 [E:34395r S:37970 M:174442878] (S) Msg Retransmission to 1:00]
    I: 206946 [EM]>>> [E:34395r S:37970 M:238011095 (Ack:174442878)] (S) Msg RX fro)
    I: 206961 [IM]Received status response, status is 0x00                          
    I: 206967 [EM]<<< [E:34395r S:37970 M:174442879 (Ack:238011095)] (S) Msg TX fro)
    I: 206987 [EM]??1 [E:34395r S:37970 M:174442879] (S) Msg Retransmission to 1:00]
    I: 207000 [DMG]Registered a ReadHandler that will schedule a report between sys.
    I: 207456 [EM]>>> [E:34395r S:37970 M:238011096 (Ack:174442879)] (S) Msg RX fro)
                                                                                    
    uart:~$                                                                         
    uart:~$                                                                         
    uart:~$ 
    


    Thanks & Regards,
    Pratik Panchal

Children
No Data
Related