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.

CCS/TM4C1294NCPDT: Programs Builds. CCS Still Reports Errors. Unable to Program

Part Number: TM4C1294NCPDT
Other Parts Discussed in Thread: UNIFLASH, EK-TM4C129EXL

Tool/software: Code Composer Studio

I am attempting to program a custom board using a TM4C1294NCPDT microcontroller and a XDS 100V2 debugger. I was previously able to program the microcontroller via CCS successfully. The debugger was working correctly and the program halted at , however I needed to flash a mac address into user memory. After attempting to flash a mac address using UniFlash CCS will no longer program the MCU. I am getting the following error message,

I programmed in the following mac address using UniFlash, 9C-EA-A2-E9-2A-FD.

I have tried power cycling the board and putting the RST pin of the MCU low to no avail.

I am not sure if this is related, but CCS will successfully build the project and report that errors are still present only in debugging mode. I was able to program the MCU and watch the execution even though CCS thought there were still errors.

I realize that this error message can have many different causes and have attached the MCU schematic, and the project build output. 

Thanks,

Allan

ccs_build.txt

2844.sch_pg5.pdf

  • Allan Overstreet98 said:
    I realize that this error message can have many different causes and have attached the MCU schematic, and the project build output. 

    In the project build output I can't see any error from the TI build tools.

    The errors might be coming from the Eclipse Code Analysis tool. As per Code Analysis, you can look at the Type field in the Problems view to determine where the errors are coming from.

  • Hi Allan,

      

    Allan Overstreet98 said:
    I am not sure if this is related, but CCS will successfully build the project and report that errors are still present only in debugging mode. I was able to program the MCU and watch the execution even though CCS thought there were still errors.

    Can you try to close the CCS and open again and load a different program (enet_lwip, blinky or others)? Do you see the error go away? If the error goes away, reload the enet_uip again and what happens?

  • Allan Overstreet98 said:
    I was able to program the MCU and watch the execution even though CCS thought there were still errors.

    Was the MCU programmed using Uniflash or CCS?

    I am a bit confused, since the previous part of the post suggests the MCU could no longer be programmed after setting the MAC address using Uniflash.

  • Chester,

    Sorry for the confusion, hopefully I can explain the situation a little better.

    The MCU was programmed at first with CCS. This is a new microcontroller which didn't have a MAC address programmed in user flash. So debugging would always jump to an infinite while loop to stop execution.

        //
        // Read the MAC address from the user registers.
        //
        MAP_FlashUserGet(&ui32User0, &ui32User1);
        if((ui32User0 == 0xffffffff) || (ui32User1 == 0xffffffff))
        {
            //
            // We should never get here.  This is an error if the MAC address has
            // not been programmed into the device.  Exit the program.
            //
            UpdateStatus("MAC Address Not Programmed!");
            while(1)
            {
                    // <- Execution would get stuck here.
            }
        }

    After seeing this problem I tried to adjust the build settings in CCS to program a MAC address,

    Changing this setting didn't appear to work correctly as execution would not move past the infinite while loop.

    I opened UniFlash and attempted to program the MAC address to 9C-EA-A2-E9-2A-FD. This appeared to work correctly, however the debug port has now become locked and I can't seem to unlock it. 

    Using UniFlash to unlock the port results in the following error message (I made sure to power cycle the board while holding reset),

    Trying to connect from CCS and debug the MCU results in the following error message,

    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
    CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging

    Any ideas on how to unlock the debug port?

    Thanks,

    Allan

  • Chester,

    I believe I was able to fix the problem. After some digging I found the dbgjtag.exe program and ran,

    C:\ti\uniflash_5.0.0\deskdb\content\TICloudAgent\win\ccs_base\common\uscif>dbgjtag.exe -f @xds100v2 -Y unlock,mode=tiva
    
    Executing the unlock procedure.
    
    Assert and hold reset while powering up the device.
    Press any key to continue.
    
    Release reset.
    Press any key to continue.
    
    Power cycle the board to complete the unlock procedure.
    
    C:\ti\uniflash_5.0.0\deskdb\content\TICloudAgent\win\ccs_base\common\uscif>

    The MCU debug port has been unlocked and I can debug with CCS now!

    I am still trying to figure out why CCS is still not writing the MAC address to user flash!?!

    Thanks,

    Allan

  • Hi Allan,

      Glad that you are making progress. Can you tell what CCS or Uniflash version you are using? I don't have XDS100v2. I only have XDS200. When I use the XDS200 to program the MAC address using Uniflash I don't see a problem. If you are still facing tool issue, I will need to move your post to our CCS forum for further assistance. I use Uniflash 5.3.1. 

  • Charles,

    I have been using 5.3.0 to program the MAC address to the MCU. The issue I am facing is I can not program the MAC address using UniFlash without locking the debug port. Attempting to program the MAC with the "Committ MAC Address" option checked will lock the debug port, and prevent further debugging in CCS.

    Some steps I have tried,

    1. In CCS go to Project -> Properties -> Debug -> Flash Settings

    1a. Enter MAC address ("00-1a-b6-02-c5-a3")

    1b. Check commit mac address. This settings does not appear to have any affect.

    1c. Debug. Program drops into infinite while loop.

    1d. Debug again. Program again drops into infinite while loop.

    Changing the debug flash settings in CCS does not appear to have an effect on flashing the MAC address. CCS appears to be ignoring these settings.

    2. Open UniFlash

    2a. Enter MAC address ("00-1a-b6-02-c5-a3").

    2b. Check commit mac address.

    2c. Click Program MAC address.

    2d. Read MAC to ensure it was written to flash.

    3. Try debugging with CCS after step 2.

    3a. CCS displays error message,

    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
    CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
    

    4. Unlock the MCU using the previously posted procedure.

    C:\ti\uniflash_5.0.0\deskdb\content\TICloudAgent\win\ccs_base\common\uscif>dbgjtag.exe -f @xds100v2 -Y unlock,mode=tiva
    
    Executing the unlock procedure.
    
    Assert and hold reset while powering up the device.
    Press any key to continue.
    
    Release reset.
    Press any key to continue.
    
    Power cycle the board to complete the unlock procedure.
    
    C:\ti\uniflash_5.0.0\deskdb\content\TICloudAgent\win\ccs_base\common\uscif>

    On another note my custom board has some LEDs that are flashing abnormally almost as if the MCU is resetting itself. The way the MCU is programmed the LEDs should turn on and switch off immediately, however after using UniFlash to program the MAC address they appear to be blinking.

    I am still stuck trying to get in a state where the DAP access is not locked and a MAC address is programmed into user flash. Any ideas why UniFlash is locking the DAP?

    Thanks,

    Allan

  • Allan Overstreet98 said:
    Changing the debug flash settings in CCS does not appear to have an effect on flashing the MAC address. CCS appears to be ignoring these settings

    I can't seem to repeat that, using CCS 10.1.1.00004 under Windows 10 with a XDS100v2 connected to a TM4C1294NCPDT:

    1. Start by performing a device unlock to erase the registers with the MAC address.

    Had to use the following command line to perform the unlock, as trying the unlock from CCS caused CCS to crash:

    dbgjtag.exe -f @xds100v2 -Y unlock,mode=tiva

    2. Read the MAC address in CCS and confirm the erased values:

    3. Program the MAC address in CCS, with the "Commit MAC Address" option checked:

    4. Power cycle the device, and read back the MAC address in CCS to confirm that has been committed:

    5. Run the TivaWare enet_io which can obtain an IP using DHCP and communicate. The DHCP server confirms the MAC address is that programmed above.

  • Allan Overstreet98 said:
    I have been using 5.3.0 to program the MAC address to the MCU.

    Allan Overstreet98 said:
    Any ideas why UniFlash is locking the DAP?

    I don't have the same Uniflash version installed, and just downloaded the latest 6.1.0.2829 for Windows. With Uniflash 6.1.0.2829 was successfully able to program the MAC address, without the DAP being locked:

    The test sequence was:

    1. Use dbgjtag to unlock the device, and erase the MAC address.

    2. Use CCS 10 to download and run the enet_io which as expected reported "No MAC programmed!".

    3. Use Uniflash 6.1.0.2829 to program the MAC address, which reported the operation was successful.

    4. Power cycled the device.

    5. Use CCS 10 to download and run the enet_io, which this time found a valid MAC address and successfully communicated on the Ethernet.

  • Chester,

    1. Start by performing a device unlock to erase the registers with the MAC address.

    2. Read the MAC address in CCS and confirm the erased values:

    3. Program the MAC address in CCS, with the "Commit MAC Address" option checked:

    4. Power cycle the device, and read back the MAC address in CCS to confirm that has been committed:

    5. Run the TivaWare enet_io which can obtain an IP using DHCP and communicate. The DHCP server confirms the MAC address is that programmed above.

    Results in the error message,

    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
    CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
    

    I am beginning to think that this might be a hardware problem on the custom board. I have attached a copy of the MCU schematic.

    Thanks,

    Allan

  • Chester Gillon said:
    With Uniflash 6.1.0.2829 was successfully able to program the MAC address, without the DAP being locked

    Also tried Uniflash 5.3.0.2629, and again was able to successfully program the MAC address without the DAP being locked.

    I also noticed that neither Uniflash 5.3.0.2629 nor 6.1.0.2829 is showing the option to perform a device unlock.

  • Allan Overstreet98 said:
    I am beginning to think that this might be a hardware problem on the custom board. I have attached a copy of the MCU schematic.

    Y1 is labeled as "NX3225GA-26MHZ-TI".

    System Design Guidelines for the TM4C129x Family of Tiva C Series MCUs section 3.6.1.1 Main Oscillator Circuit says:

    Tiva™ TM4C129x family parts that support the integrated Ethernet PHY require a 25MHz crystal on the main oscillator circuit.

    As your custom board uses the integrated Ethernet phy, use of a 26MHz rather than 25MHz crystal could be causing problems.

    Once a valid MAC address has been programmed, but while the rest of the flash is still blank, I think the ROM bootloader may try and run which could cause issues if the wrong crystal is fitted and lock the device, for similar reasons as noted in the following errata:

    Your design does have a RBIAS resistor, so doesn't match the exact conditions mentioned in ETH#03 but the symptoms of JTAG not working might be the same with RBIAS fitted, erased flash and a wrong crystal frequency.

  • I am pretty sure I placed a 25MHz oscillator on the board. I was very lazy and used a 26MHz footprint in the ecad software!

  • Allan Overstreet98 said:
    Results in the error message,
    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
    CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedde

    To try and narrow down the point at which the error occurs try:

    1. Enable Verbose Output under the debug project properties:

    That should output messages to the console about how far the flash programming gets before the error. E.g. for an error free case got:

    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: Writing Flash @ Address 0x00000000 of Length 0x00007f80
    CORTEX_M4_0: Performing Mass Erase on Flash memory
    CORTEX_M4_0: Writing Flash @ Address 0x00007f80 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x0000ff00 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x00017e80 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x0001fe00 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x00027d80 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x0002fd00 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x00037c80 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x0003fc00 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x00047b80 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x0004fb00 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x00057a80 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x0005fa00 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x00067980 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x0006f900 of Length 0x00007f80
    CORTEX_M4_0: Writing Flash @ Address 0x00077880 of Length 0x00003298

    2. Disable the Auto Run Options options which attempt to run to a symbol (default is the main function). That is to see if error occurs after the debugger has attempted to run to a symbol.

    If the error doesn't occur with the run to symbol de-selected, then you could try and step through the start up code to find where the error occurs.

    3. If the above don't identify the point the error occurs at, try enabling Debug Server Logs and post the log file.

  • Chester,

    I tried the debugging steps that you mentioned. None appeared to fix the problem. The verbose flag resulted in the following output to console,

    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: Writing Flash @ Address 0x00000000 of Length 0x00007778
    CORTEX_M4_0: Performing Mass Erase on Flash memory
    CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
    CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
    

    I can step through main(), the program appears to be getting stuck at,

    //
    // Wait for the link to become active.
    //
    UpdateStatus("Waiting for Link.");
    while((MAP_EMACPHYRead(EMAC0_BASE, 0, EPHY_BMSR) &
               EPHY_BMSR_LINKSTAT) == 0)
    {
    }

    Clicking continue is when I get the "JTAG Communication Error".

    I have been having some trouble programming the flash. For instance I am getting an error message,

    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: Writing Flash @ Address 0x00000000 of Length 0x00007778
    CORTEX_M4_0: Performing Mass Erase on Flash memory
    CORTEX_M4_0: Flash Programmer: Flash programming timed out.
    CORTEX_M4_0: Can't Run Target CPU: (Error -1268 @ 0x1090001) Device is locked up in Hard Fault or in NMI. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 

    Power cycling the board or pushing the reset button will fix this problem.

    Below is the Debug Server Log File,

    0x0000466C 0 3  COM_DBG_IF C: class XPCOMLogger::CoLogger::OnEnabledChanged()
    0x0000466C 0 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0CD650 )->onEvent()
    0x0000466C 0 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0CD650 )->onEvent() = 0x00000000
    0x0000466C 0 3  COM_DBG_IF R: class XPCOMLogger::CoLogger::OnEnabledChanged()
    0x0000466C 0 3 CORTEX_M4_0 GEL I: Evaluation of "DEBUG_LogEnable(1)" completed - Value: 0 Location: unknown
    0x0000466C 0 3  XPCOM C: ( (dsIObjectEventCallback*)000001836FF45860 )->onEvent( 00000183702220C8 )
    0x0000466C 0 3  XPCOM C: ( (nsISupports*)00000183702220A0 )->queryInterface( 000001836FF06CE0, 00000016F4EFC738 )
    0x0000466C 0 3  XPCOM R: ( (nsISupports*)00000183702220A0 )->queryInterface( 000001836FF06CE0, *00000016F4EFC738 = 00000183702220C8 ) = 0x00000000
    0x0000466C 1 3  XPCOM C: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getExpression( 00000016F4EFC660 )
    0x0000466C 1 3  XPCOM R: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getExpression( *00000016F4EFC660 = DEBUG_LogEnable(1) ) = 0x00000000
    0x0000466C 1 3  XPCOM R: ( (dsIObjectEventCallback*)000001836FF45860 )->onEvent( 00000183702220C8 ) = 0x00000000
    0x000041DC 1 3  XPCOM C: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getErrorMessage( 00000016F60FD5E0 )
    0x000041DC 1 3  XPCOM R: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getErrorMessage( *00000016F60FD5E0 =  ) = 0x00000000
    0x0000466C 1 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 1 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 1 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 1 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 348 ms
    0x000041DC 1 3  XPCOM C: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getTargetData( 00000016F60FD650 )
    0x0000466C 1 4  POLL I: TimeToSleep() found shorter sleep time of 348 ms from class DevicePollFrequencyManager
    0x0000466C 1 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x000041DC 1 5  COM_DBG_IF I: Final Release for class CoValue (this = 000001836AB11AF0)
    0x000041DC 1 3  XPCOM R: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getTargetData( *00000016F60FD650 = 000001836FF45E20 ) = 0x00000000
    0x000041DC 1 3  XPCOM C: ( (dsITargetData*)000001836FF45E20 )->toLongLong( 00000016F60FD660 )
    0x000041DC 1 3  XPCOM R: ( (dsITargetData*)000001836FF45E20 )->toLongLong( *00000016F60FD660 = 0x0000000000000000 ) = 0x00000000
    0x0000466C 349 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 349 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 349 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 349 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 349 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 349 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 349 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 349 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 349 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4650 ms
    0x0000466C 349 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 349 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 349 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4650 ms
    0x0000466C 852 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 852 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 852 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 852 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 852 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 852 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 852 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 852 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 852 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4147 ms
    0x0000466C 852 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 852 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 852 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4147 ms
    0x0000466C 1362 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 1362 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 1362 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 1362 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 1362 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 1362 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 1362 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 1362 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 1362 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3637 ms
    0x0000466C 1362 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 1362 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 1362 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3637 ms
    0x0000466C 1871 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 1871 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 1871 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 1871 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 1871 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 1871 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 1871 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 1871 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 1871 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3128 ms
    0x0000466C 1871 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 1871 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 1871 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3128 ms
    0x0000466C 2373 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 2373 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 2373 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 2373 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 2373 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 2373 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 2373 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 2373 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 2373 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2626 ms
    0x0000466C 2373 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 2373 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 2373 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2626 ms
    0x0000466C 2874 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 2874 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 2874 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 2874 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 2874 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 2874 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 2875 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 2875 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 2875 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2126 ms
    0x0000466C 2875 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 2875 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 2875 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2126 ms
    0x0000466C 3376 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 3376 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 3376 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 3376 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 3376 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 3376 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 3376 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 3377 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 3377 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1623 ms
    0x0000466C 3377 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 3377 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 3377 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1623 ms
    0x0000466C 3880 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 3880 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 3880 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 3880 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 3880 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 3880 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 3880 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 3880 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 3880 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1119 ms
    0x0000466C 3880 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 3880 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 3880 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1119 ms
    0x0000466C 4383 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 4383 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 4383 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 4383 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 4383 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 4383 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 4383 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 4383 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 4383 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 616 ms
    0x0000466C 4383 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 4383 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 4383 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 616 ms
    0x0000466C 4893 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 4893 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 4893 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 4893 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 4893 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 4893 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 4893 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 4893 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 4893 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 107 ms
    0x0000466C 4893 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 4893 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 4893 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 107 ms
    0x0000466C 4893 4  POLL I: TimeToSleep() found shorter sleep time of 107 ms from class DevicePollFrequencyManager
    0x0000466C 5001 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 391 ms
    0x0000466C 5001 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5001 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 5001 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5003 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5003 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_HALTED
    0x0000466C 5003 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5003 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5003 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 391 ms
    0x0000466C 5003 4  POLL I: TimeToSleep() found shorter sleep time of 391 ms from class DevicePollFrequencyManager
    0x0000466C 5003 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x0000466C 5396 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5396 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 5396 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 5396 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 5396 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 5396 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 5396 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 5396 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5396 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4606 ms
    0x0000466C 5396 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 5396 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 5396 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4606 ms
    0x00002D54 5844 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FED40 )
    0x00002D54 5844 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FED40 = true ) = 0x00000000
    0x00002D54 5844 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->run()
    0x00002D54 5844 3 CORTEX_M4_0 STATE I: Debugger execution state changed to EVENT_DSP_RUN
    0x00002D54 5844 3 CORTEX_M4_0 POLL C: Firing DSP_PRE_RUN to all DSP_USER's
    0x00002D54 5844 3 CORTEX_M4_0 POLL I: Beginning auto-cancel with 1 requests registered
    0x00002D54 5844 3 CORTEX_M4_0 POLL C: Firing of DSP_PRE_RUN complete
    0x00002D54 5844 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->run() = 0x00000000
    0x0000466C 5844 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_RUN
    0x0000466C 5845 3 CS_DAP_0 GEL I: Evaluating "OnChildRunning()"
    0x0000466C 5845 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x0000466C 5845 3 CORTEX_M4_0 POLL C: Firing DSP_RUNNING to all DSP_USER's
    0x0000466C 5845 3 CORTEX_M4_0 POLL I: Auto-cancel disabled
    0x0000466C 5845 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eRunning )
    0x0000466C 5845 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eRunning )
    0x0000466C 5845 3  COM_DBG_IF C: class DSP_CO_USER::OnRunning()
    0x0000466C 5845 3  XPCOM C: ( (dsISimpleEventCallback*)000001836CD1B010 )->onEvent()
    0x0000466C 5845 3  XPCOM R: ( (dsISimpleEventCallback*)000001836CD1B010 )->onEvent() = 0x00000000
    0x0000466C 5845 3  COM_DBG_IF R: class DSP_CO_USER::OnRunning()
    0x0000466C 5845 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5845 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent()
    0x0000466C 5845 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent() = 0x00000000
    0x0000466C 5845 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5845 3  COM_DBG_IF C: class DSP_CO_USER::OnExecutionStatusChanged()
    0x0000466C 5846 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AD810 )->onEvent()
    0x0000466C 5846 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFC9F0, 00000016F4EFCA08, 00000016F4EFCA20, 00000016F4EFCA38 )
    0x0000466C 5846 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFC9F0 = true, *00000016F4EFCA08 = false, *00000016F4EFCA20 = 0x00000005, *00000016F4EFCA38 = 0x00000001 ) = 0x00000000
    0x0000466C 5846 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFC970, 00000016F4EFC988, 00000016F4EFC9A0, 00000016F4EFC9B8 )
    0x0000466C 5846 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFC970 = true, *00000016F4EFC988 = false, *00000016F4EFC9A0 = 0x00000005, *00000016F4EFC9B8 = 0x00000001 ) = 0x00000000
    0x0000466C 5846 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AD810 )->onEvent() = 0x00000000
    0x0000466C 5846 3  COM_DBG_IF R: class DSP_CO_USER::OnExecutionStatusChanged()
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Firing DSP_CALLSTACK_INVALIDATED to all DSP_USER's
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Firing of DSP_CALLSTACK_INVALIDATED complete
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Firing of DSP_RUNNING complete
    0x0000466C 5846 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5846 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5846 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 5846 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5846 4  POLL I: Yielding to other threads
    0x0000466C 5846 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 5846 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 5846 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUN and status EVENT_DSP_RUN
    0x0000466C 5846 3  CT C: cToolsMgrIFDS::SendCtoolsEvent( 0, 1, 0000000000000000 )
    0x0000466C 5846 3  CT R: cToolsMgrIFDS::SendCtoolsEvent( 0, 1, 0000000000000000 ) = 0
    0x0000466C 5846 3 CORTEX_M4_0 GTI C: GTI_RUN_EX( 0x000001836ADF17A0, 0x00000000, *0x00000016F4EFE530 = { 0x00000001, 0x0000000C, 0x00000000 } )
    0x0000466C 5846 3 CORTEX_M4_0 GTI C: SyncMode::AboutToStepPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT C: StepPastBp::AboutToStepPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT R: StepPastBp::AboutToStepPast() = (null)
    0x0000466C 5846 3 CORTEX_M4_0 GTI R: SyncMode::AboutToStepPast() = (null)
    0x0000466C 5846 3 CORTEX_M4_0 GTI C: SyncMode::FinishedSteppingPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT C: StepPastBp::FinishedSteppingPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT R: StepPastBp::FinishedSteppingPast() = (null)
    0x0000466C 5846 3 CORTEX_M4_0 GTI R: SyncMode::FinishedSteppingPast() = (null)
    0x00004768 5847 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 5899 3 CORTEX_M4_0 GTI R: GTI_RUN_EX( 0x000001836ADF17A0, 0x00000000, *0x00000016F4EFE530 = { 0x00000001, 0x0000000C, 0x00000000 } ) = 0x00000000
    0x0000466C 5899 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDC58 = 0x00000000, *0x00000016F4EFDC50 = 0x00000000, *0x00000016F4EFDC60 = 0x00000000, *0x00000016F4EFDC70 = 0x00000000, *0x00000016F4EFDC74 = 0x00000000, *0x00000016F4EFDC6C = 0x00000000, *0x00000016F4EFDC68 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 5899 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDC58 = 0x00000000, *0x00000016F4EFDC50 = 0x00000000, *0x00000016F4EFDC60 = 0x00000000, *0x00000016F4EFDC70 = 0x00000002, *0x00000016F4EFDC74 = 0x00000000, *0x00000016F4EFDC6C = 0x00000008, *0x00000016F4EFDC68 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 5899 3 CORTEX_M4_0 POLL C: Firing DSP_POST_RUNNING to all DSP_USER's
    0x0000466C 5899 3 CORTEX_M4_0 POLL C: Firing of DSP_POST_RUNNING complete
    0x0000466C 5899 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5902 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5902 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5902 3 CORTEX_M4_0 POLL C: Firing DSP_ALLOWED_ACCESS_CHANGED to all DSP_USER's
    0x0000466C 5902 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5902 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent()
    0x0000466C 5902 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent() = 0x00000000
    0x0000466C 5902 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5902 3 CORTEX_M4_0 POLL C: Firing of DSP_ALLOWED_ACCESS_CHANGED complete
    0x0000466C 5902 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 5902 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 5902 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5902 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4  POLL I: Yielding to other threads
    0x0000466C 5902 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 5902 3 CS_DAP_0 POLL C: Firing DSP_REQ_EVENT to class `anonymous namespace'::NullRequestNotification
    0x0000466C 5902 3 CS_DAP_0 GEL I: Evaluation of "OnChildRunning()" failed: 'OnChildRunning()' not found
    0x0000466C 5902 3 CS_DAP_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 5902 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 5902 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5902 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4  POLL I: Yielding to other threads
    0x00002D54 5902 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x0000466C 5902 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE_STATUS_CHECK and status EVENT_DSP_HALT
    0x00004768 5902 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 5902 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 5902 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 5902 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 5902 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 5902 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002D54 5902 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00004768 5902 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 5902 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5902 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4  POLL I: Yielding to other threads for 10 ms
    0x00002D54 5902 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 5902 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = true ) = 0x00000000
    0x00002D54 5902 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 5902 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002D54 5902 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 5902 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = true ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( 00000016F231BBE0 )
    0x00004768 5914 3  XPCOM R: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( *00000016F231BBE0 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIOSAwareManager*)000001836FC97230 )->IsOSAwareDebugEnabled( 00000016F231C2C0 )
    0x00004768 5914 3  XPCOM R: ( (dsIOSAwareManager*)000001836FC97230 )->IsOSAwareDebugEnabled( *00000016F231C2C0 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( 00000016F231C2D0 )
    0x00004768 5914 3  XPCOM R: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( *00000016F231C2D0 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C340 )
    0x00004768 5914 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Name( 00000016F231C310 )
    0x00004768 5914 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Name( *00000016F231C310 = Reset Emulator ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIGlobalBreakpoints*)00000183702A1660 )->GlobalBreakpoints( 00000016F231C400 )
    0x00004768 5914 3  XPCOM R: ( (dsIGlobalBreakpoints*)00000183702A1660 )->GlobalBreakpoints( *00000016F231C400 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( 00000016F231BB80 )
    0x00004768 5914 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( *00000016F231BB80 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C308 )
    0x00004768 5915 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C308 = 000001836FD18740 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C140 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C140 = 0x00000000 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06EC0, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06EC0, *00000016F231C168 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06EE0, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06EE0, *00000016F231C168 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C2E0 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C2E0 = true ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepIntoAllowed( 00000016F231C220 )
    0x00004768 5915 3  XPCOM R: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepIntoAllowed( *00000016F231C220 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C308 )
    0x00004768 5915 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C308 = 000001836FD18800 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C140 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C140 = 0x00000000 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF06840, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF06840, *00000016F231C168 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF067C0, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF067C0, *00000016F231C168 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C2E0 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C2E0 = true ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIGlobalBreakpoints*)00000183702A1660 )->canModifyGlobalBreakpoints( 00000016F231C400 )
    0x00004768 5915 3  XPCOM R: ( (dsIGlobalBreakpoints*)00000183702A1660 )->canModifyGlobalBreakpoints( *00000016F231C400 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C330 )
    0x00004768 5915 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C330 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0000, 00000016F231C1F8 )
    0x00004768 5915 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0000, *00000016F231C1F8 = true ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( 00000016F231BB80 )
    0x00004768 5915 3  XPCOM R: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( *00000016F231BB80 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( 00000016F231BB90 )
    0x00004768 5916 3  XPCOM R: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( *00000016F231BB90 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C340 )
    0x00004768 5916 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C340 )
    0x00004768 5916 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C340 )
    0x00004768 5916 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5928 3  XPCOM C: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepOverAllowed( 00000016F231C220 )
    0x00004768 5928 3  XPCOM R: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepOverAllowed( *00000016F231C220 = false ) = 0x00000000
    0x00004768 5934 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CC30 )
    0x00004768 5934 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CC30 = TMS470REX ) = 0x00000000
    0x00002D54 5935 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 5935 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002D54 5935 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 5935 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = true ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 5936 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 5936 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF073C0, 00000016F231D358 )
    0x00004768 5936 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF073C0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF073C0, 00000016F231D358 )
    0x00004768 5936 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF073C0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 5936 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 5937 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07760, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07760, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 5937 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF075A0, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF075A0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06F80, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06F80, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 5937 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07160, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07160, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 5939 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 5939 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5939 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 5939 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5939 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 5939 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x0000466C 5956 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 446 ms
    0x0000466C 5956 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5956 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5956 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5958 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5958 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5958 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5958 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5958 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 446 ms
    0x0000466C 5958 4  POLL I: TimeToSleep() found shorter sleep time of 446 ms from class DevicePollFrequencyManager
    0x0000466C 5958 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5958 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5958 4  POLL I: Yielding to other threads
    0x0000466C 5958 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 444 ms
    0x0000466C 5958 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5959 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5959 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5961 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5961 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5961 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5961 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5961 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 444 ms
    0x0000466C 5961 4  POLL I: TimeToSleep() found shorter sleep time of 444 ms from class DevicePollFrequencyManager
    0x0000466C 5961 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5961 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5961 4  POLL I: Yielding to other threads
    0x0000466C 5961 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 441 ms
    0x0000466C 5961 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5961 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5961 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5964 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5964 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5964 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5964 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5964 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 441 ms
    0x0000466C 5964 4  POLL I: TimeToSleep() found shorter sleep time of 441 ms from class DevicePollFrequencyManager
    0x0000466C 5964 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5964 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5964 4  POLL I: Yielding to other threads
    0x0000466C 5964 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 438 ms
    0x0000466C 5964 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5964 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5964 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5967 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5967 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5967 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5967 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5967 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 438 ms
    0x0000466C 5967 4  POLL I: TimeToSleep() found shorter sleep time of 438 ms from class DevicePollFrequencyManager
    0x0000466C 5967 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5967 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5967 4  POLL I: Yielding to other threads
    0x0000466C 5967 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 435 ms
    0x0000466C 5967 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5967 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5967 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5969 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5969 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5969 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5969 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5970 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 435 ms
    0x0000466C 5970 4  POLL I: TimeToSleep() found shorter sleep time of 435 ms from class DevicePollFrequencyManager
    0x0000466C 5970 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5970 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5970 4  POLL I: Yielding to other threads
    0x0000466C 5970 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x0000466C 5970 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5970 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5970 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5972 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5972 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5972 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5972 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x0000466C 5972 4  POLL I: TimeToSleep() found shorter sleep time of 432 ms from class DevicePollFrequencyManager
    0x0000466C 5972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5972 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5972 4  POLL I: Yielding to other threads
    0x0000466C 5972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 430 ms
    0x0000466C 5972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5972 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5972 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5975 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5975 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5975 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5975 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5975 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 430 ms
    0x0000466C 5975 4  POLL I: TimeToSleep() found shorter sleep time of 430 ms from class DevicePollFrequencyManager
    0x0000466C 5975 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5975 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5975 4  POLL I: Yielding to other threads
    0x0000466C 5975 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 427 ms
    0x0000466C 5975 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5975 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5975 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5978 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5978 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5978 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5978 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5978 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 427 ms
    0x0000466C 5978 4  POLL I: TimeToSleep() found shorter sleep time of 427 ms from class DevicePollFrequencyManager
    0x0000466C 5978 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5978 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5978 4  POLL I: Yielding to other threads
    0x0000466C 5978 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 424 ms
    0x0000466C 5978 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5978 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5978 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5980 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5980 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5980 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5980 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5980 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 424 ms
    0x0000466C 5980 4  POLL I: TimeToSleep() found shorter sleep time of 424 ms from class DevicePollFrequencyManager
    0x0000466C 5981 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5981 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5981 4  POLL I: Yielding to other threads
    0x0000466C 5981 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 421 ms
    0x0000466C 5981 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5981 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5981 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5983 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5983 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5983 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5983 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5983 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 421 ms
    0x0000466C 5983 4  POLL I: TimeToSleep() found shorter sleep time of 421 ms from class DevicePollFrequencyManager
    0x0000466C 5983 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5983 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5983 4  POLL I: Yielding to other threads
    0x0000466C 5983 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 419 ms
    0x0000466C 5983 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5983 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5983 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5986 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5986 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5986 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5986 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5986 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 419 ms
    0x0000466C 5986 4  POLL I: TimeToSleep() found shorter sleep time of 419 ms from class DevicePollFrequencyManager
    0x0000466C 5986 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5986 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5986 4  POLL I: Yielding to other threads
    0x0000466C 5986 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 416 ms
    0x0000466C 5986 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5986 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5986 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5988 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5988 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5988 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5988 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5988 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 416 ms
    0x0000466C 5988 4  POLL I: TimeToSleep() found shorter sleep time of 416 ms from class DevicePollFrequencyManager
    0x0000466C 5988 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5988 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5988 4  POLL I: Yielding to other threads
    0x0000466C 5988 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 414 ms
    0x0000466C 5988 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5988 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5988 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5991 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5991 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5991 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5991 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5991 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 414 ms
    0x0000466C 5991 4  POLL I: TimeToSleep() found shorter sleep time of 414 ms from class DevicePollFrequencyManager
    0x0000466C 5991 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5991 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5991 4  POLL I: Yielding to other threads
    0x0000466C 5991 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 411 ms
    0x0000466C 5991 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5991 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5991 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 5993 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 5993 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06FA0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06FA0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06FA0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06FA0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 5993 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x0000466C 5994 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5994 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5994 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5994 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5994 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 411 ms
    0x0000466C 5994 4  POLL I: TimeToSleep() found shorter sleep time of 411 ms from class DevicePollFrequencyManager
    0x0000466C 5994 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5994 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5994 4  POLL I: Yielding to other threads
    0x0000466C 5994 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 408 ms
    0x0000466C 5994 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5994 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5994 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5997 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5997 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5997 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5997 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5997 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 408 ms
    0x0000466C 5997 4  POLL I: TimeToSleep() found shorter sleep time of 408 ms from class DevicePollFrequencyManager
    0x0000466C 5997 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5997 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5997 4  POLL I: Yielding to other threads
    0x0000466C 5997 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 405 ms
    0x0000466C 5997 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5997 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5997 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6000 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6000 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6000 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6000 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6000 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 405 ms
    0x0000466C 6000 4  POLL I: TimeToSleep() found shorter sleep time of 405 ms from class DevicePollFrequencyManager
    0x0000466C 6000 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6000 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6000 4  POLL I: Yielding to other threads
    0x0000466C 6000 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 402 ms
    0x0000466C 6001 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6001 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6001 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6004 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6004 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6004 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6004 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6004 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 402 ms
    0x0000466C 6004 4  POLL I: TimeToSleep() found shorter sleep time of 402 ms from class DevicePollFrequencyManager
    0x0000466C 6004 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6004 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6004 4  POLL I: Yielding to other threads
    0x0000466C 6004 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 398 ms
    0x0000466C 6004 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6004 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6004 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6007 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6007 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6007 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6007 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6007 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 398 ms
    0x0000466C 6007 4  POLL I: TimeToSleep() found shorter sleep time of 398 ms from class DevicePollFrequencyManager
    0x0000466C 6007 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6007 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6007 4  POLL I: Yielding to other threads
    0x0000466C 6007 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 395 ms
    0x0000466C 6007 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6007 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6007 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6009 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6009 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6010 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6010 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6010 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 395 ms
    0x0000466C 6010 4  POLL I: TimeToSleep() found shorter sleep time of 395 ms from class DevicePollFrequencyManager
    0x0000466C 6010 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6010 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6010 4  POLL I: Yielding to other threads
    0x0000466C 6010 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 392 ms
    0x0000466C 6010 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6010 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6010 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6013 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6013 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6013 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6013 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6013 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 392 ms
    0x0000466C 6013 4  POLL I: TimeToSleep() found shorter sleep time of 392 ms from class DevicePollFrequencyManager
    0x0000466C 6013 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6013 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6013 4  POLL I: Yielding to other threads
    0x0000466C 6013 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 389 ms
    0x0000466C 6013 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6013 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6013 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6015 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6016 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6016 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6016 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6016 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 389 ms
    0x0000466C 6016 4  POLL I: TimeToSleep() found shorter sleep time of 389 ms from class DevicePollFrequencyManager
    0x0000466C 6016 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6016 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6016 4  POLL I: Yielding to other threads
    0x0000466C 6016 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 386 ms
    0x0000466C 6016 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6016 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6016 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6018 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6018 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6018 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6018 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6018 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 386 ms
    0x0000466C 6018 4  POLL I: TimeToSleep() found shorter sleep time of 386 ms from class DevicePollFrequencyManager
    0x0000466C 6018 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6019 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6019 4  POLL I: Yielding to other threads
    0x0000466C 6019 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 383 ms
    0x0000466C 6019 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6019 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6019 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6021 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6021 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6021 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6021 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6021 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 383 ms
    0x0000466C 6021 4  POLL I: TimeToSleep() found shorter sleep time of 383 ms from class DevicePollFrequencyManager
    0x0000466C 6021 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6021 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6021 4  POLL I: Yielding to other threads
    0x0000466C 6021 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 381 ms
    0x0000466C 6021 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6021 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6021 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6024 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6024 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6024 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6024 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6024 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 381 ms
    0x0000466C 6024 4  POLL I: TimeToSleep() found shorter sleep time of 381 ms from class DevicePollFrequencyManager
    0x0000466C 6024 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6024 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6024 4  POLL I: Yielding to other threads
    0x0000466C 6024 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 378 ms
    0x0000466C 6024 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6024 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6024 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6026 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6026 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6026 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6026 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6026 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 378 ms
    0x0000466C 6027 4  POLL I: TimeToSleep() found shorter sleep time of 378 ms from class DevicePollFrequencyManager
    0x0000466C 6027 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6027 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6027 4  POLL I: Yielding to other threads
    0x0000466C 6027 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 375 ms
    0x0000466C 6027 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6027 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6027 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6029 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6029 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6029 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6029 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6029 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 375 ms
    0x0000466C 6029 4  POLL I: TimeToSleep() found shorter sleep time of 375 ms from class DevicePollFrequencyManager
    0x0000466C 6029 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6029 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6029 4  POLL I: Yielding to other threads
    0x0000466C 6029 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 373 ms
    0x0000466C 6029 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6029 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6029 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6031 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6031 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6031 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6031 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6031 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 373 ms
    0x0000466C 6031 4  POLL I: TimeToSleep() found shorter sleep time of 373 ms from class DevicePollFrequencyManager
    0x0000466C 6031 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6031 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6032 4  POLL I: Yielding to other threads
    0x0000466C 6032 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 370 ms
    0x0000466C 6032 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6032 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6032 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6034 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6034 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6034 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6034 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6034 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 370 ms
    0x0000466C 6034 4  POLL I: TimeToSleep() found shorter sleep time of 370 ms from class DevicePollFrequencyManager
    0x0000466C 6034 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6034 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6034 4  POLL I: Yielding to other threads
    0x0000466C 6034 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 368 ms
    0x0000466C 6034 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6034 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6034 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6037 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6037 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6037 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6037 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6037 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 368 ms
    0x0000466C 6037 4  POLL I: TimeToSleep() found shorter sleep time of 368 ms from class DevicePollFrequencyManager
    0x0000466C 6037 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6037 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6037 4  POLL I: Yielding to other threads
    0x0000466C 6037 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 365 ms
    0x0000466C 6037 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6037 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6037 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6039 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6039 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6039 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6039 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6039 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 365 ms
    0x0000466C 6039 4  POLL I: TimeToSleep() found shorter sleep time of 365 ms from class DevicePollFrequencyManager
    0x0000466C 6039 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6039 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6039 4  POLL I: Yielding to other threads
    0x0000466C 6039 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 363 ms
    0x0000466C 6039 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6039 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6039 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6042 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6042 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6042 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6042 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6042 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 363 ms
    0x0000466C 6042 4  POLL I: TimeToSleep() found shorter sleep time of 363 ms from class DevicePollFrequencyManager
    0x0000466C 6042 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6042 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6042 4  POLL I: Yielding to other threads
    0x0000466C 6042 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 360 ms
    0x0000466C 6042 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6042 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6042 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6044 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6044 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6044 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6044 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6044 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 360 ms
    0x0000466C 6044 4  POLL I: TimeToSleep() found shorter sleep time of 360 ms from class DevicePollFrequencyManager
    0x0000466C 6044 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6044 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6044 4  POLL I: Yielding to other threads
    0x0000466C 6044 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 358 ms
    0x0000466C 6044 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6044 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6044 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6046 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6046 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6046 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6046 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6046 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 358 ms
    0x0000466C 6046 4  POLL I: TimeToSleep() found shorter sleep time of 358 ms from class DevicePollFrequencyManager
    0x0000466C 6046 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6046 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6047 4  POLL I: Yielding to other threads
    0x0000466C 6047 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 355 ms
    0x0000466C 6047 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6047 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6047 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6049 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6049 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6049 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6049 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6049 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 355 ms
    0x0000466C 6049 4  POLL I: TimeToSleep() found shorter sleep time of 355 ms from class DevicePollFrequencyManager
    0x0000466C 6049 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6049 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6049 4  POLL I: Yielding to other threads
    0x0000466C 6049 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 353 ms
    0x0000466C 6049 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6049 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6049 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6052 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6052 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6052 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6052 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6052 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 353 ms
    0x0000466C 6052 4  POLL I: TimeToSleep() found shorter sleep time of 353 ms from class DevicePollFrequencyManager
    0x0000466C 6052 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6052 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6052 4  POLL I: Yielding to other threads
    0x0000466C 6052 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 351 ms
    0x0000466C 6052 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6052 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6052 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6054 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6054 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6054 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6054 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6054 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 351 ms
    0x0000466C 6054 4  POLL I: TimeToSleep() found shorter sleep time of 351 ms from class DevicePollFrequencyManager
    0x0000466C 6054 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6054 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6054 4  POLL I: Yielding to other threads
    0x0000466C 6054 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 349 ms
    0x0000466C 6054 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6054 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6054 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6057 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6057 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6057 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6057 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6057 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 349 ms
    0x0000466C 6057 4  POLL I: TimeToSleep() found shorter sleep time of 349 ms from class DevicePollFrequencyManager
    0x0000466C 6057 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6057 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6057 4  POLL I: Yielding to other threads
    0x0000466C 6057 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 346 ms
    0x0000466C 6057 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6057 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6057 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6059 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6059 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6059 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6059 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6059 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 346 ms
    0x0000466C 6059 4  POLL I: TimeToSleep() found shorter sleep time of 346 ms from class DevicePollFrequencyManager
    0x0000466C 6059 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6059 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6059 4  POLL I: Yielding to other threads
    0x0000466C 6059 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 344 ms
    0x0000466C 6059 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6059 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6059 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6061 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6061 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6061 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6062 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6062 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 344 ms
    0x0000466C 6062 4  POLL I: TimeToSleep() found shorter sleep time of 344 ms from class DevicePollFrequencyManager
    0x0000466C 6062 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6062 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6062 4  POLL I: Yielding to other threads
    0x0000466C 6062 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 341 ms
    0x0000466C 6062 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6062 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6062 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6064 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6064 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6064 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6064 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6064 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 341 ms
    0x0000466C 6064 4  POLL I: TimeToSleep() found shorter sleep time of 341 ms from class DevicePollFrequencyManager
    0x0000466C 6064 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6064 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6064 4  POLL I: Yielding to other threads
    0x0000466C 6064 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 339 ms
    0x0000466C 6064 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6064 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6064 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6066 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6066 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6066 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6066 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6066 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 339 ms
    0x0000466C 6066 4  POLL I: TimeToSleep() found shorter sleep time of 339 ms from class DevicePollFrequencyManager
    0x0000466C 6066 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6066 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6066 4  POLL I: Yielding to other threads
    0x0000466C 6067 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 336 ms
    0x0000466C 6067 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6067 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6067 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6069 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6069 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6069 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6069 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6069 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 336 ms
    0x0000466C 6069 4  POLL I: TimeToSleep() found shorter sleep time of 336 ms from class DevicePollFrequencyManager
    0x0000466C 6069 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6069 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6069 4  POLL I: Yielding to other threads
    0x0000466C 6069 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 334 ms
    0x0000466C 6069 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6069 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6069 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 6070 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C740 )
    0x00004768 6070 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C740 = false ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C850 )
    0x00004768 6070 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C850 = false ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C718 )
    0x00004768 6070 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C718 = 000001836FD18740 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C550 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF072E0, 00000016F231C578 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF072E0, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF072E0, 00000016F231C578 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF072E0, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C828 )
    0x00004768 6070 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C828 = 000001836FD18740 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C660 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07BE0, 00000016F231C688 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07BE0, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E60, 00000016F231C688 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E60, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C718 )
    0x00004768 6070 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C718 = 000001836FD18800 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C550 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07C80, 00000016F231C578 )
    0x00004768 6071 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07C80, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07800, 00000016F231C578 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07800, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C828 )
    0x00004768 6071 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C828 = 000001836FD18800 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C660 )
    0x00004768 6071 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07CA0, 00000016F231C688 )
    0x00004768 6071 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07CA0, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07D60, 00000016F231C688 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07D60, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C750 )
    0x0000466C 6071 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6071 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6071 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6071 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6071 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 334 ms
    0x0000466C 6071 4  POLL I: TimeToSleep() found shorter sleep time of 334 ms from class DevicePollFrequencyManager
    0x0000466C 6071 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6071 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6071 4  POLL I: Yielding to other threads for 10 ms
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C750 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C750 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C860 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C860 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C860 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x0000466C 6094 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 309 ms
    0x0000466C 6094 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6094 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6094 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6097 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6097 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6097 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6097 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6097 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 309 ms
    0x0000466C 6098 4  POLL I: TimeToSleep() found shorter sleep time of 309 ms from class DevicePollFrequencyManager
    0x0000466C 6098 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6098 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6098 4  POLL I: Yielding to other threads
    0x0000466C 6098 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 305 ms
    0x0000466C 6098 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6098 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6098 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6101 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6101 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6101 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6101 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6101 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 305 ms
    0x0000466C 6101 4  POLL I: TimeToSleep() found shorter sleep time of 305 ms from class DevicePollFrequencyManager
    0x0000466C 6101 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6101 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6101 4  POLL I: Yielding to other threads
    0x0000466C 6101 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 302 ms
    0x0000466C 6101 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6101 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6101 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6103 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6104 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6104 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6104 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6104 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 302 ms
    0x0000466C 6104 4  POLL I: TimeToSleep() found shorter sleep time of 302 ms from class DevicePollFrequencyManager
    0x0000466C 6104 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6104 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6104 4  POLL I: Yielding to other threads
    0x0000466C 6104 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 299 ms
    0x0000466C 6104 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6104 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6104 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6106 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6106 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6106 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6106 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6106 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 299 ms
    0x0000466C 6106 4  POLL I: TimeToSleep() found shorter sleep time of 299 ms from class DevicePollFrequencyManager
    0x0000466C 6106 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6106 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6106 4  POLL I: Yielding to other threads
    0x0000466C 6106 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 297 ms
    0x0000466C 6106 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6106 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6106 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6108 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6108 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6108 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6108 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6108 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 297 ms
    0x0000466C 6108 4  POLL I: TimeToSleep() found shorter sleep time of 297 ms from class DevicePollFrequencyManager
    0x0000466C 6108 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6109 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6109 4  POLL I: Yielding to other threads
    0x0000466C 6109 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 294 ms
    0x0000466C 6109 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6109 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6109 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6111 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6111 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6111 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6111 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6111 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 294 ms
    0x0000466C 6111 4  POLL I: TimeToSleep() found shorter sleep time of 294 ms from class DevicePollFrequencyManager
    0x0000466C 6111 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6111 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6111 4  POLL I: Yielding to other threads
    0x0000466C 6111 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 292 ms
    0x0000466C 6111 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6111 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6111 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6113 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6113 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6113 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6113 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6113 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 292 ms
    0x0000466C 6113 4  POLL I: TimeToSleep() found shorter sleep time of 292 ms from class DevicePollFrequencyManager
    0x0000466C 6113 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6113 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6113 4  POLL I: Yielding to other threads
    0x0000466C 6113 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 290 ms
    0x0000466C 6113 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6113 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6113 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6116 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6116 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6116 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6116 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6116 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 290 ms
    0x0000466C 6116 4  POLL I: TimeToSleep() found shorter sleep time of 290 ms from class DevicePollFrequencyManager
    0x0000466C 6116 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6116 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6116 4  POLL I: Yielding to other threads
    0x0000466C 6116 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 287 ms
    0x0000466C 6116 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6116 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6116 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6117 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6117 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6117 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6117 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6117 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 287 ms
    0x0000466C 6117 4  POLL I: TimeToSleep() found shorter sleep time of 287 ms from class DevicePollFrequencyManager
    0x0000466C 6117 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6117 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6117 4  POLL I: Yielding to other threads
    0x0000466C 6118 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 284 ms
    0x0000466C 6118 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6118 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6118 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6120 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6120 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6120 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6120 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6120 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 284 ms
    0x0000466C 6120 4  POLL I: TimeToSleep() found shorter sleep time of 284 ms from class DevicePollFrequencyManager
    0x0000466C 6120 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6120 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6120 4  POLL I: Yielding to other threads
    0x0000466C 6120 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 282 ms
    0x0000466C 6120 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6120 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6120 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6123 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6123 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6123 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6123 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6123 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 282 ms
    0x0000466C 6123 4  POLL I: TimeToSleep() found shorter sleep time of 282 ms from class DevicePollFrequencyManager
    0x0000466C 6123 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6123 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6123 4  POLL I: Yielding to other threads
    0x0000466C 6123 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 279 ms
    0x0000466C 6123 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6123 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6123 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6125 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6125 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6125 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6125 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6125 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 279 ms
    0x0000466C 6125 4  POLL I: TimeToSleep() found shorter sleep time of 279 ms from class DevicePollFrequencyManager
    0x0000466C 6125 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6125 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6125 4  POLL I: Yielding to other threads
    0x0000466C 6125 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 277 ms
    0x0000466C 6125 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6125 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6125 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6128 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6128 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6128 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6128 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6128 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 277 ms
    0x0000466C 6128 4  POLL I: TimeToSleep() found shorter sleep time of 277 ms from class DevicePollFrequencyManager
    0x0000466C 6128 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6128 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6128 4  POLL I: Yielding to other threads
    0x0000466C 6128 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 274 ms
    0x0000466C 6128 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6128 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6128 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6130 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6130 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6130 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6130 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6130 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 274 ms
    0x0000466C 6130 4  POLL I: TimeToSleep() found shorter sleep time of 274 ms from class DevicePollFrequencyManager
    0x0000466C 6130 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6130 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6130 4  POLL I: Yielding to other threads
    0x0000466C 6130 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 272 ms
    0x0000466C 6130 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6130 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6130 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6133 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6133 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6133 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6133 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6133 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 272 ms
    0x0000466C 6133 4  POLL I: TimeToSleep() found shorter sleep time of 272 ms from class DevicePollFrequencyManager
    0x0000466C 6133 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6133 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6133 4  POLL I: Yielding to other threads
    0x0000466C 6133 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 269 ms
    0x0000466C 6133 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6133 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6133 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6135 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6135 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6135 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6135 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6135 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 269 ms
    0x0000466C 6135 4  POLL I: TimeToSleep() found shorter sleep time of 269 ms from class DevicePollFrequencyManager
    0x0000466C 6135 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6135 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6135 4  POLL I: Yielding to other threads
    0x0000466C 6135 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 267 ms
    0x0000466C 6135 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6135 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6135 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6138 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6138 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6138 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6138 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6138 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 267 ms
    0x0000466C 6138 4  POLL I: TimeToSleep() found shorter sleep time of 267 ms from class DevicePollFrequencyManager
    0x0000466C 6138 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6138 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6138 4  POLL I: Yielding to other threads
    0x0000466C 6138 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 264 ms
    0x0000466C 6138 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6138 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6138 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6140 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6140 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6140 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6140 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6140 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 264 ms
    0x0000466C 6140 4  POLL I: TimeToSleep() found shorter sleep time of 264 ms from class DevicePollFrequencyManager
    0x0000466C 6140 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6140 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6140 4  POLL I: Yielding to other threads
    0x0000466C 6140 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 262 ms
    0x0000466C 6140 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6140 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6140 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6143 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6143 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6143 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6143 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6143 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 262 ms
    0x0000466C 6143 4  POLL I: TimeToSleep() found shorter sleep time of 262 ms from class DevicePollFrequencyManager
    0x0000466C 6143 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6143 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6143 4  POLL I: Yielding to other threads
    0x0000466C 6143 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 259 ms
    0x0000466C 6143 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6143 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6143 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6145 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6145 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6145 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6145 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6145 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 259 ms
    0x0000466C 6145 4  POLL I: TimeToSleep() found shorter sleep time of 259 ms from class DevicePollFrequencyManager
    0x0000466C 6145 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6145 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6145 4  POLL I: Yielding to other threads
    0x0000466C 6146 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 257 ms
    0x0000466C 6146 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6146 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6146 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6149 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6149 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6149 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6149 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6149 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 257 ms
    0x0000466C 6149 4  POLL I: TimeToSleep() found shorter sleep time of 257 ms from class DevicePollFrequencyManager
    0x0000466C 6149 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6149 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6149 4  POLL I: Yielding to other threads
    0x0000466C 6149 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 253 ms
    0x0000466C 6149 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6149 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6149 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6152 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6152 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6152 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6152 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6152 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 253 ms
    0x0000466C 6152 4  POLL I: TimeToSleep() found shorter sleep time of 253 ms from class DevicePollFrequencyManager
    0x0000466C 6152 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6152 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6152 4  POLL I: Yielding to other threads
    0x0000466C 6152 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 250 ms
    0x0000466C 6152 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6152 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6152 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6154 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6154 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6154 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6154 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6154 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 250 ms
    0x0000466C 6154 4  POLL I: TimeToSleep() found shorter sleep time of 250 ms from class DevicePollFrequencyManager
    0x0000466C 6154 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6154 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6154 4  POLL I: Yielding to other threads
    0x0000466C 6154 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 248 ms
    0x0000466C 6154 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6154 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6154 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6157 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6157 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6157 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6157 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6157 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 248 ms
    0x0000466C 6157 4  POLL I: TimeToSleep() found shorter sleep time of 248 ms from class DevicePollFrequencyManager
    0x0000466C 6157 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6157 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6157 4  POLL I: Yielding to other threads
    0x0000466C 6157 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 245 ms
    0x0000466C 6157 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6157 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6157 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6159 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6159 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6159 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6159 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6159 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 245 ms
    0x0000466C 6159 4  POLL I: TimeToSleep() found shorter sleep time of 245 ms from class DevicePollFrequencyManager
    0x0000466C 6159 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6159 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6159 4  POLL I: Yielding to other threads
    0x0000466C 6159 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 243 ms
    0x0000466C 6159 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6159 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6159 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6162 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6162 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6162 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6162 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6162 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 243 ms
    0x0000466C 6162 4  POLL I: TimeToSleep() found shorter sleep time of 243 ms from class DevicePollFrequencyManager
    0x0000466C 6162 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6162 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6162 4  POLL I: Yielding to other threads
    0x0000466C 6162 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 240 ms
    0x0000466C 6162 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6162 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6162 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6164 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6164 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6164 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6164 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6164 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 240 ms
    0x0000466C 6164 4  POLL I: TimeToSleep() found shorter sleep time of 240 ms from class DevicePollFrequencyManager
    0x0000466C 6164 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6164 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6164 4  POLL I: Yielding to other threads
    0x0000466C 6164 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 238 ms
    0x0000466C 6164 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6164 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6164 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6166 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6166 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6167 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6167 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6167 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 238 ms
    0x0000466C 6167 4  POLL I: TimeToSleep() found shorter sleep time of 238 ms from class DevicePollFrequencyManager
    0x0000466C 6167 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6167 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6167 4  POLL I: Yielding to other threads
    0x0000466C 6167 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 235 ms
    0x0000466C 6167 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6167 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6167 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6169 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6169 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6169 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6169 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6169 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 235 ms
    0x0000466C 6169 4  POLL I: TimeToSleep() found shorter sleep time of 235 ms from class DevicePollFrequencyManager
    0x0000466C 6169 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6169 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6169 4  POLL I: Yielding to other threads
    0x0000466C 6169 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 233 ms
    0x0000466C 6169 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6169 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6169 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6171 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6171 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6171 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6171 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6171 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 233 ms
    0x0000466C 6172 4  POLL I: TimeToSleep() found shorter sleep time of 233 ms from class DevicePollFrequencyManager
    0x0000466C 6172 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6172 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6172 4  POLL I: Yielding to other threads
    0x0000466C 6172 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 230 ms
    0x0000466C 6172 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6172 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6172 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6174 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6174 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6174 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6174 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6174 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 230 ms
    0x0000466C 6174 4  POLL I: TimeToSleep() found shorter sleep time of 230 ms from class DevicePollFrequencyManager
    0x0000466C 6174 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6174 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6174 4  POLL I: Yielding to other threads
    0x0000466C 6174 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 228 ms
    0x0000466C 6174 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6174 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6174 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6176 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6177 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6177 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6177 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6177 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 228 ms
    0x0000466C 6177 4  POLL I: TimeToSleep() found shorter sleep time of 228 ms from class DevicePollFrequencyManager
    0x0000466C 6177 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6177 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6177 4  POLL I: Yielding to other threads
    0x0000466C 6177 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 225 ms
    0x0000466C 6177 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6177 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6177 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6179 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6179 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6179 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6179 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6179 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 225 ms
    0x0000466C 6179 4  POLL I: TimeToSleep() found shorter sleep time of 225 ms from class DevicePollFrequencyManager
    0x0000466C 6179 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6179 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6179 4  POLL I: Yielding to other threads
    0x0000466C 6179 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 223 ms
    0x0000466C 6179 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6179 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6179 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6181 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6181 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6181 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6181 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6181 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 223 ms
    0x0000466C 6181 4  POLL I: TimeToSleep() found shorter sleep time of 223 ms from class DevicePollFrequencyManager
    0x0000466C 6181 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6181 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6181 4  POLL I: Yielding to other threads
    0x0000466C 6181 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 221 ms
    0x0000466C 6181 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6181 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6182 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6184 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6184 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6184 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6184 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6184 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 221 ms
    0x0000466C 6184 4  POLL I: TimeToSleep() found shorter sleep time of 221 ms from class DevicePollFrequencyManager
    0x0000466C 6184 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6184 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6184 4  POLL I: Yielding to other threads
    0x0000466C 6184 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 218 ms
    0x0000466C 6184 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6184 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6184 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6186 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6186 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6186 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6186 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6186 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 218 ms
    0x0000466C 6186 4  POLL I: TimeToSleep() found shorter sleep time of 218 ms from class DevicePollFrequencyManager
    0x0000466C 6186 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6186 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6186 4  POLL I: Yielding to other threads
    0x0000466C 6186 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 216 ms
    0x0000466C 6186 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6186 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6186 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6189 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6189 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6189 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6189 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6189 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 216 ms
    0x0000466C 6189 4  POLL I: TimeToSleep() found shorter sleep time of 216 ms from class DevicePollFrequencyManager
    0x0000466C 6189 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6189 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6189 4  POLL I: Yielding to other threads
    0x0000466C 6189 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 213 ms
    0x0000466C 6189 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6189 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6189 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6191 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6191 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6191 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6191 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6191 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 213 ms
    0x0000466C 6191 4  POLL I: TimeToSleep() found shorter sleep time of 213 ms from class DevicePollFrequencyManager
    0x0000466C 6191 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6191 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6191 4  POLL I: Yielding to other threads
    0x0000466C 6191 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 211 ms
    0x0000466C 6191 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6191 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6191 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6194 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6194 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6194 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6194 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6194 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 211 ms
    0x0000466C 6194 4  POLL I: TimeToSleep() found shorter sleep time of 211 ms from class DevicePollFrequencyManager
    0x0000466C 6194 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6194 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6194 4  POLL I: Yielding to other threads
    0x0000466C 6194 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 208 ms
    0x0000466C 6194 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6194 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6194 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6196 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6196 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6196 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6196 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6196 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 208 ms
    0x0000466C 6196 4  POLL I: TimeToSleep() found shorter sleep time of 208 ms from class DevicePollFrequencyManager
    0x0000466C 6196 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6196 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6196 4  POLL I: Yielding to other threads
    0x0000466C 6196 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 206 ms
    0x0000466C 6196 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6196 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6196 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6199 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6199 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6199 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6199 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6199 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 206 ms
    0x0000466C 6199 4  POLL I: TimeToSleep() found shorter sleep time of 206 ms from class DevicePollFrequencyManager
    0x0000466C 6199 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6199 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6199 4  POLL I: Yielding to other threads
    0x0000466C 6199 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 203 ms
    0x0000466C 6199 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6199 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6199 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6201 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6201 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6201 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6201 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6201 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 203 ms
    0x0000466C 6201 4  POLL I: TimeToSleep() found shorter sleep time of 203 ms from class DevicePollFrequencyManager
    0x0000466C 6201 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6201 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6201 4  POLL I: Yielding to other threads
    0x0000466C 6201 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 201 ms
    0x0000466C 6201 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6202 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6202 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6204 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6204 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6204 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6204 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6204 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 201 ms
    0x0000466C 6204 4  POLL I: TimeToSleep() found shorter sleep time of 201 ms from class DevicePollFrequencyManager
    0x0000466C 6204 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6204 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6204 4  POLL I: Yielding to other threads
    0x0000466C 6204 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 198 ms
    0x0000466C 6204 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6204 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6204 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6206 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6206 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6206 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6206 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6206 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 198 ms
    0x0000466C 6206 4  POLL I: TimeToSleep() found shorter sleep time of 198 ms from class DevicePollFrequencyManager
    0x0000466C 6206 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6206 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6206 4  POLL I: Yielding to other threads
    0x0000466C 6206 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 196 ms
    0x0000466C 6206 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6206 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6206 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6209 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6209 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6209 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6209 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6209 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 196 ms
    0x0000466C 6209 4  POLL I: TimeToSleep() found shorter sleep time of 196 ms from class DevicePollFrequencyManager
    0x0000466C 6209 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6209 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6209 4  POLL I: Yielding to other threads
    0x0000466C 6209 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 193 ms
    0x0000466C 6209 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6209 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6209 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6211 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6211 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6211 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6211 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6211 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 193 ms
    0x0000466C 6211 4  POLL I: TimeToSleep() found shorter sleep time of 193 ms from class DevicePollFrequencyManager
    0x0000466C 6211 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6211 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6211 4  POLL I: Yielding to other threads
    0x0000466C 6211 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 191 ms
    0x0000466C 6211 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6211 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6211 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6214 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6214 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6214 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6214 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6214 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 191 ms
    0x0000466C 6214 4  POLL I: TimeToSleep() found shorter sleep time of 191 ms from class DevicePollFrequencyManager
    0x0000466C 6214 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6214 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6214 4  POLL I: Yielding to other threads
    0x0000466C 6214 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 188 ms
    0x0000466C 6214 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6214 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6214 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6216 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6216 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6216 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6216 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6216 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 188 ms
    0x0000466C 6216 4  POLL I: TimeToSleep() found shorter sleep time of 188 ms from class DevicePollFrequencyManager
    0x0000466C 6216 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6216 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6216 4  POLL I: Yielding to other threads
    0x0000466C 6216 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 186 ms
    0x0000466C 6216 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6216 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6216 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6218 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6219 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6219 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6219 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6219 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 186 ms
    0x0000466C 6219 4  POLL I: TimeToSleep() found shorter sleep time of 186 ms from class DevicePollFrequencyManager
    0x0000466C 6219 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6219 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6219 4  POLL I: Yielding to other threads
    0x0000466C 6219 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 183 ms
    0x0000466C 6219 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6219 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6219 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6221 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6221 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6221 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6221 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6221 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 183 ms
    0x0000466C 6221 4  POLL I: TimeToSleep() found shorter sleep time of 183 ms from class DevicePollFrequencyManager
    0x0000466C 6221 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6221 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6221 4  POLL I: Yielding to other threads
    0x0000466C 6221 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 181 ms
    0x0000466C 6221 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6221 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6221 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6223 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6224 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6224 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6224 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6224 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 181 ms
    0x0000466C 6224 4  POLL I: TimeToSleep() found shorter sleep time of 181 ms from class DevicePollFrequencyManager
    0x0000466C 6224 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6224 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6224 4  POLL I: Yielding to other threads
    0x0000466C 6224 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 178 ms
    0x0000466C 6224 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6224 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x00004768 6224 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C740 )
    0x0000466C 6224 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 6224 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C740 = false ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C850 )
    0x00004768 6224 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C850 = false ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C718 )
    0x00004768 6224 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C718 = 000001836FD18740 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C550 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07B00, 00000016F231C578 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07B00, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E00, 00000016F231C578 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E00, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C828 )
    0x00004768 6224 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C828 = 000001836FD18740 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C660 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07D80, 00000016F231C688 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07D80, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07BC0, 00000016F231C688 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07BC0, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C718 )
    0x00004768 6225 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C718 = 000001836FD18800 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C550 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, 00000016F231C578 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07BC0, 00000016F231C578 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07BC0, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C828 )
    0x00004768 6225 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C828 = 000001836FD18800 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C660 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, 00000016F231C688 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07CA0, 00000016F231C688 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07CA0, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C750 )
    0x0000466C 6226 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6226 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6226 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x0000466C 6226 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6226 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 178 ms
    0x0000466C 6226 4  POLL I: TimeToSleep() found shorter sleep time of 178 ms from class DevicePollFrequencyManager
    0x0000466C 6226 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6226 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6226 4  POLL I: Yielding to other threads for 10 ms
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C750 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C750 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C860 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C860 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C860 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x0000466C 6252 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 150 ms
    0x0000466C 6252 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6252 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6252 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6256 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6256 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6256 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6256 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6256 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 150 ms
    0x0000466C 6256 4  POLL I: TimeToSleep() found shorter sleep time of 150 ms from class DevicePollFrequencyManager
    0x0000466C 6256 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6256 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6256 4  POLL I: Yielding to other threads
    0x0000466C 6256 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 146 ms
    0x0000466C 6256 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6256 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6256 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6258 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6258 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6258 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6258 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6258 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 146 ms
    0x0000466C 6258 4  POLL I: TimeToSleep() found shorter sleep time of 146 ms from class DevicePollFrequencyManager
    0x0000466C 6258 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6258 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6258 4  POLL I: Yielding to other threads
    0x0000466C 6258 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 144 ms
    0x0000466C 6258 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6258 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6258 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6261 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6261 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6261 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6261 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6261 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 144 ms
    0x0000466C 6261 4  POLL I: TimeToSleep() found shorter sleep time of 144 ms from class DevicePollFrequencyManager
    0x0000466C 6261 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6261 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6261 4  POLL I: Yielding to other threads
    0x0000466C 6261 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 141 ms
    0x0000466C 6261 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6261 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6261 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6263 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6263 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6263 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6263 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6263 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 141 ms
    0x0000466C 6263 4  POLL I: TimeToSleep() found shorter sleep time of 141 ms from class DevicePollFrequencyManager
    0x0000466C 6263 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6263 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6263 4  POLL I: Yielding to other threads
    0x0000466C 6263 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 139 ms
    0x0000466C 6263 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6263 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6263 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6266 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6266 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6266 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6266 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6266 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 139 ms
    0x0000466C 6266 4  POLL I: TimeToSleep() found shorter sleep time of 139 ms from class DevicePollFrequencyManager
    0x0000466C 6266 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6266 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6266 4  POLL I: Yielding to other threads
    0x0000466C 6266 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 136 ms
    0x0000466C 6266 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6266 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6266 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6268 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6268 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6268 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6268 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6268 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 136 ms
    0x0000466C 6268 4  POLL I: TimeToSleep() found shorter sleep time of 136 ms from class DevicePollFrequencyManager
    0x0000466C 6268 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6268 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6268 4  POLL I: Yielding to other threads
    0x0000466C 6268 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 134 ms
    0x0000466C 6268 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6268 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6268 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6271 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6271 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6271 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6271 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6271 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 134 ms
    0x0000466C 6271 4  POLL I: TimeToSleep() found shorter sleep time of 134 ms from class DevicePollFrequencyManager
    0x0000466C 6271 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6271 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6271 4  POLL I: Yielding to other threads
    0x0000466C 6271 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 131 ms
    0x0000466C 6271 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6271 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6271 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6273 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6273 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6273 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6273 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6273 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 131 ms
    0x0000466C 6273 4  POLL I: TimeToSleep() found shorter sleep time of 131 ms from class DevicePollFrequencyManager
    0x0000466C 6273 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6273 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6273 4  POLL I: Yielding to other threads
    0x0000466C 6273 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 129 ms
    0x0000466C 6273 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6273 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6273 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6276 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6276 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6276 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6276 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6276 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 129 ms
    0x0000466C 6276 4  POLL I: TimeToSleep() found shorter sleep time of 129 ms from class DevicePollFrequencyManager
    0x0000466C 6276 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6276 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6276 4  POLL I: Yielding to other threads
    0x0000466C 6276 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 126 ms
    0x0000466C 6276 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6276 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6276 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6278 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6278 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6278 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6278 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6278 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 126 ms
    0x0000466C 6278 4  POLL I: TimeToSleep() found shorter sleep time of 126 ms from class DevicePollFrequencyManager
    0x0000466C 6278 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6278 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6278 4  POLL I: Yielding to other threads
    0x0000466C 6278 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 124 ms
    0x0000466C 6279 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6279 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6279 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6281 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6281 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6281 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6281 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6281 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 124 ms
    0x0000466C 6281 4  POLL I: TimeToSleep() found shorter sleep time of 124 ms from class DevicePollFrequencyManager
    0x0000466C 6281 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6281 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6281 4  POLL I: Yielding to other threads
    0x0000466C 6281 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 121 ms
    0x0000466C 6281 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6281 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6281 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6283 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6283 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6283 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6283 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6283 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 121 ms
    0x0000466C 6283 4  POLL I: TimeToSleep() found shorter sleep time of 121 ms from class DevicePollFrequencyManager
    0x0000466C 6283 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6283 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6283 4  POLL I: Yielding to other threads
    0x0000466C 6284 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 118 ms
    0x0000466C 6284 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6284 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6284 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6285 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 101, 202, 301, 401, 501, 0, 0 } ) = 0x00000000
    0x0000466C 6285 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_CABLE_BREAK
    0x0000466C 6285 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000000, *0x00000016F4EFDA90 = 0x00000000, *0x00000016F4EFDAA0 = 0x00000000, *0x00000016F4EFDAB0 = 0x00000000, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000000, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6285 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000010, *0x00000016F4EFDA90 = 0xFFFFFB6E, *0x00000016F4EFDAA0 = 0x00000020, *0x00000016F4EFDAB0 = 0x00000002, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000008, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "(Error -1170 @ 0x0)
    Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK).
    (Emulation package 9.2.0.00002)
    ", 0x00000400 ) = 0x00000001
    0x0000466C 6285 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000000, *0x00000016F4EFDA90 = 0x00000000, *0x00000016F4EFDAA0 = 0x00000000, *0x00000016F4EFDAB0 = 0x00000000, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000000, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6285 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000000, *0x00000016F4EFDA90 = 0x00000000, *0x00000016F4EFDAA0 = 0x00000000, *0x00000016F4EFDAB0 = 0x00000002, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000008, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6285 3  COM_DBG_IF C: class dsDebugger::OnError()
    0x0000466C 6285 3  XPCOM C: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     )
    0x0000466C 6286 3  XPCOM R: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     ) = 0x00000000
    0x0000466C 6286 3  COM_DBG_IF R: class dsDebugger::OnError()
    0x0000466C 6286 3 CORTEX_M4_0 POLL C: Firing DSP_TASK_ERROR_MESSAGE_ERROR to all DSP_USER's
    0x0000466C 6286 3  COM_DBG_IF C: class DSP_CO_USER::OnError()
    0x0000466C 6286 3  XPCOM C: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     )
    0x0000466C 6286 3  XPCOM R: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     ) = 0x00000000
    0x0000466C 6286 3  COM_DBG_IF R: class DSP_CO_USER::OnError()
    0x0000466C 6286 3 CORTEX_M4_0 POLL C: Firing of DSP_TASK_ERROR_MESSAGE_ERROR complete
    0x0000466C 6287 3 CS_DAP_0 STATE I: Connection state changed to 3
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing DSP_DISCONNECTING to all DSP_USER's
    0x0000466C 6287 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6287 3  XPCOM C: ( (dsIBooleanEventCallback*)000001836D0AD510 )->onEvent( true )
    0x0000466C 6287 3  XPCOM R: ( (dsIBooleanEventCallback*)000001836D0AD510 )->onEvent( true ) = 0x00000000
    0x0000466C 6287 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6287 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D230310 )->onEvent()
    0x0000466C 6287 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D230310 )->onEvent() = 0x00000000
    0x0000466C 6287 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing of DSP_DISCONNECTING complete
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing DSP_REMOVE_DEBUG_STATE to all DSP_USER's
    0x0000466C 6287 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6287 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6287 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6287 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing of DSP_REMOVE_DEBUG_STATE complete
    0x0000466C 6287 3 CORTEX_M4_0 STATE I: Connection state changed to 3
    0x0000466C 6287 3 CORTEX_M4_0 POLL C: Firing DSP_DISCONNECTING to all DSP_USER's
    0x0000466C 6287 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6287 3  XPCOM C: ( (dsIBooleanEventCallback*)000001836D0AC610 )->onEvent( true )
    0x0000466C 6287 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( 00000016F4EFC4C0 )
    0x0000466C 6287 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( *00000016F4EFC4C0 = 0x00000003 ) = 0x00000000
    0x0000466C 6287 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFC4E0, 00000016F4EFC4F8, 00000016F4EFC510, 00000016F4EFC528 )
    0x0000466C 6287 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFC4E0 = true, *00000016F4EFC4F8 = false, *00000016F4EFC510 = 0x00000005, *00000016F4EFC528 = 0x00000001 ) = 0x00000000
    0x0000466C 6288 3  XPCOM R: ( (dsIBooleanEventCallback*)000001836D0AC610 )->onEvent( true ) = 0x00000000
    0x0000466C 6288 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6288 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6288 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent()
    0x0000466C 6288 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent() = 0x00000000
    0x0000466C 6288 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6288 3 CORTEX_M4_0 POLL C: Firing of DSP_DISCONNECTING complete
    0x0000466C 6288 3 CORTEX_M4_0 POLL C: Firing DSP_REMOVE_DEBUG_STATE to all DSP_USER's
    0x0000466C 6288 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6288 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6288 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6288 3 CS_DAP_0 TA C: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E0002008, 0x00000004, 0 )
    0x0000466C 6288 3 CS_DAP_0 GTI C: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002008, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } )
    0x00004768 6289 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 6289 3 CS_DAP_0 GTI R: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002008, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } ) = 0x00000000
    0x0000466C 6289 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000000, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000000, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6289 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000002, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000008, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6289 3 CS_DAP_0 TA R: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E0002008, 0x00000004, 0 ) = 0
    0x0000466C 6289 3  COM_DBG_IF C: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6290 3  XPCOM C: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D187E40 )
    0x0000466C 6290 3  XPCOM C: ( (nsISupports*)000001836D187E50 )->queryInterface( 000001836FD2EE00, 00000016F4EFC0A8 )
    0x0000466C 6290 3  XPCOM R: ( (nsISupports*)000001836D187E50 )->queryInterface( 000001836FD2EE00, *00000016F4EFC0A8 = 000001836D187E40 ) = 0x00000000
    0x0000466C 6290 3  XPCOM C: ( (dsIBreakpoint*)000001836D187E40 )->IsSystem( 00000016F4EFC100 )
    0x0000466C 6290 3  XPCOM R: ( (dsIBreakpoint*)000001836D187E40 )->IsSystem( *00000016F4EFC100 = true ) = 0x00000000
    0x0000466C 6290 3  XPCOM R: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D187E40 ) = 0x00000000
    0x0000466C 6290 3  COM_DBG_IF R: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6290 3 CS_DAP_0 TA C: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E000200C, 0x00000004, 0 )
    0x0000466C 6290 3 CS_DAP_0 GTI C: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E000200C, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } )
    0x0000466C 6291 3 CS_DAP_0 GTI R: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E000200C, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } ) = 0x00000000
    0x0000466C 6291 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000000, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000000, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6292 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000002, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000008, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6292 3 CS_DAP_0 TA R: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E000200C, 0x00000004, 0 ) = 0
    0x0000466C 6292 3 CS_DAP_0 TA C: MemoryWrite( *00000016F4EFCEB0 = 2, 0x00000000E0002000, 0x00000004, 0 )
    0x0000466C 6292 3 CS_DAP_0 GTI C: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002000, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000002, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } )
    0x0000466C 6293 3 CS_DAP_0 GTI R: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002000, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000002, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } ) = 0x00000000
    0x0000466C 6293 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000000, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000000, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6293 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000002, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000008, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6293 3 CS_DAP_0 TA R: MemoryWrite( *00000016F4EFCEB0 = 2, 0x00000000E0002000, 0x00000004, 0 ) = 0
    0x0000466C 6293 3  COM_DBG_IF C: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6293 3  XPCOM C: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D188B40 )
    0x0000466C 6293 3  XPCOM C: ( (nsISupports*)000001836D188B50 )->queryInterface( 000001836FD2FDC0, 00000016F4EFC0A8 )
    0x0000466C 6293 3  XPCOM R: ( (nsISupports*)000001836D188B50 )->queryInterface( 000001836FD2FDC0, *00000016F4EFC0A8 = 000001836D188B40 ) = 0x00000000
    0x0000466C 6293 3  XPCOM C: ( (dsIBreakpoint*)000001836D188B40 )->IsSystem( 00000016F4EFC100 )
    0x0000466C 6293 3  XPCOM R: ( (dsIBreakpoint*)000001836D188B40 )->IsSystem( *00000016F4EFC100 = true ) = 0x00000000
    0x0000466C 6293 3  XPCOM R: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D188B40 ) = 0x00000000
    0x0000466C 6293 3  COM_DBG_IF R: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6293 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6293 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D188DC0 )->onEvent()
    0x0000466C 6293 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D188DC0 )->onEvent() = 0x00000000
    0x0000466C 6293 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6293 3 CORTEX_M4_0 POLL C: Firing of DSP_REMOVE_DEBUG_STATE complete
    0x0000466C 6293 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6293 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 6293 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6294 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6294 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6294 4  POLL I: Yielding to other threads
    0x0000466C 6294 3 CS_DAP_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_HALT
    0x0000466C 6294 3 CS_DAP_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836D0B3160 )
    0x0000466C 6294 3 CS_DAP_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836D0B3160 ) = 0x00000000
    0x0000466C 6294 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000000, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000000, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6294 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000002, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000008, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6294 3  PERF I: GTI_DISCONNECT starting...
    0x0000466C 6294 3 CS_DAP_0 GTI C: GTI_DISCONNECT( 0x000001836D0B3160 )
    0x00002D54 6294 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00004768 6294 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 6294 3 CS_DAP_0 GTI R: GTI_DISCONNECT( 0x000001836D0B3160 ) = 0x00000000
    0x0000466C 6294 3  PERF I: GTI_DISCONNECT finished:  0.000694s wall, 0.000000s user + 0.000000s system = 0.000000s CPU (n/a%)
    
    0x0000466C 6295 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000000, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000000, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6295 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000002, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000008, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6295 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 6295 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000B
    0x0000466C 6295 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6295 3 CS_DAP_0 STATE I: Connection state changed to 2
    0x0000466C 6295 3 CS_DAP_0 POLL C: Firing DSP_DISCONNECTED to all DSP_USER's
    0x0000466C 6295 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6295 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6295 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6295 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AD490 )->onEvent()
    0x0000466C 6295 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A0FF8 )->connectionStatus( 00000016F4EFCBA0 )
    0x0000466C 6295 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A0FF8 )->connectionStatus( *00000016F4EFCBA0 = 0x00000002 ) = 0x00000000
    0x0000466C 6295 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AD490 )->onEvent() = 0x00000000
    0x0000466C 6295 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6295 3 CS_DAP_0 POLL C: Firing of DSP_DISCONNECTED complete
    0x0000466C 6295 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002D54 6295 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00004768 6295 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 6295 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6295 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_RUN
    0x00002D54 6295 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x0000466C 6295 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 6296 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 0, 101, 202, 301, 401, 501, 0, 0 } ) = 0x00000000
    0x0000466C 6297 3 CORTEX_M4_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836ADF17A0 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836ADF17A0 ) = 0x00000000
    0x0000466C 6297 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000000, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000000, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000010, *0x00000016F4EFDDE0 = 0xFFFFFB6E, *0x00000016F4EFDDF0 = 0x00000020, *0x00000016F4EFDE00 = 0x00000002, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000008, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "(Error -1170 @ 0x0)
    Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK).
    (Emulation package 9.2.0.00002)
    ", 0x00000400 ) = 0x00000001
    0x0000466C 6297 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000000, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000000, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000002, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000008, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6297 3  COM_DBG_IF C: class dsDebugger::OnError()
    0x0000466C 6297 3  XPCOM C: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     )
    0x0000466C 6298 3  XPCOM R: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     ) = 0x00000000
    0x0000466C 6298 3  COM_DBG_IF R: class dsDebugger::OnError()
    0x0000466C 6298 3 CORTEX_M4_0 POLL C: Firing DSP_TASK_ERROR_MESSAGE_ERROR to all DSP_USER's
    0x0000466C 6298 3  COM_DBG_IF C: class DSP_CO_USER::OnError()
    0x0000466C 6298 3  XPCOM C: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     )
    0x0000466C 6298 3  XPCOM R: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     ) = 0x00000000
    0x0000466C 6298 3  COM_DBG_IF R: class DSP_CO_USER::OnError()
    0x0000466C 6298 3 CORTEX_M4_0 POLL C: Firing of DSP_TASK_ERROR_MESSAGE_ERROR complete
    0x0000466C 6298 3  PERF I: GTI_DISCONNECT starting...
    0x0000466C 6298 3 CORTEX_M4_0 GTI C: GTI_DISCONNECT( 0x000001836ADF17A0 )
    0x0000466C 6352 3 CORTEX_M4_0 GTI R: GTI_DISCONNECT( 0x000001836ADF17A0 ) = 0x00000000
    0x0000466C 6352 3  PERF I: GTI_DISCONNECT finished:  0.053343s wall, 0.031250s user + 0.000000s system = 0.031250s CPU (58.6%)
    
    0x0000466C 6352 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000000, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000000, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6352 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000002, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000008, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6352 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6352 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 1, 100, 202, 301, 401, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6352 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6352 3 CORTEX_M4_0 STATE I: Connection state changed to 2
    0x0000466C 6352 3 CORTEX_M4_0 POLL C: Firing DSP_DISCONNECTED to all DSP_USER's
    0x0000466C 6352 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6352 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6352 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6352 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AD710 )->onEvent()
    0x0000466C 6352 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( 00000016F4EFCB30 )
    0x0000466C 6352 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( *00000016F4EFCB30 = 0x00000002 ) = 0x00000000
    0x0000466C 6352 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFCB40, 00000016F4EFCB58, 00000016F4EFCB70, 00000016F4EFCB88 )
    0x0000466C 6352 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFCB40 = true, *00000016F4EFCB58 = false, *00000016F4EFCB70 = 0x00000005, *00000016F4EFCB88 = 0x00000001 ) = 0x00000000
    0x0000466C 6352 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AD710 )->onEvent() = 0x00000000
    0x0000466C 6352 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6352 3 CORTEX_M4_0 POLL C: Firing of DSP_DISCONNECTED complete
    0x0000466C 6353 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004308 6353 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( 00000016F4FFF050 )
    0x00002034 6353 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F42FEC90 )
    0x00002D54 6353 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x00004768 6353 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x0000466C 6353 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6353 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6353 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6353 4  POLL I: Yielding to other threads
    0x00004308 6353 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( *00000016F4FFF050 = false ) = 0x00000000
    0x00002D54 6353 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00004768 6353 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00002034 6353 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F42FEC90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6353 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002034 6353 3  XPCOM C: ( (dsIMemoryAccess*)00000183702A15E8 )->createMemory2( 000001836AD533B0, 00000016F42FEC28, 00000016F42FEC40 )
    0x0000466C 6353 3 CS_DAP_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x0000466C 6353 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6353 3 CS_DAP_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6353 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002D54 6353 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002034 6353 3  XPCOM R: ( (dsIMemoryAccess*)00000183702A15E8 )->createMemory2( 000001836AD533B0, *00000016F42FEC28 = 0000000000000000, *00000016F42FEC40 = 000001836AD8D5A0 ) = 0x00000000
    0x0000466C 6354 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x00004768 6354 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00002034 6354 3  XPCOM C: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x0006, 0x0000000000000000, 00000016F42FEC30 )
    0x00002D54 6354 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x0000466C 6354 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6354 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6354 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00002034 6354 3  XPCOM R: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x0006, 0x0000000000000000, *00000016F42FEC30 = 000001836AD8BF60 ) = 0x00000000
    0x00004768 6354 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00002D54 6354 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x0000466C 6354 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6354 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6354 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6354 4  POLL I: Yielding to other threads
    0x0000466C 6354 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6354 3 CS_DAP_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x0000466C 6354 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6354 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6354 3 CS_DAP_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6354 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 6354 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x0000466C 6354 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6355 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6355 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00004768 6355 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00002034 6355 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getBitLength( 00000016F42FEC30 )
    0x0000466C 6355 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 6355 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00004768 6355 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00002034 6355 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getBitLength( *00000016F42FEC30 = 0x00000020 ) = 0x00000000
    0x00004768 6355 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6355 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getPage( 00000016F42FEC30 )
    0x00002034 6355 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getPage( *00000016F42FEC30 = 0x00000079 ) = 0x00000000
    0x00004768 6355 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6355 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsITargetData*)000001836AD8BF60 )->bestMatchedUDataType( 0x00000020, 0x0079, 00000016F42FEC50 )
    0x00002034 6355 3  XPCOM R: ( (dsITargetData*)000001836AD8BF60 )->bestMatchedUDataType( 0x00000020, 0x0079, *00000016F42FEC50 = 0x000B ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x000B, 0x0000000000000000, 00000016F42FEC30 )
    0x00002034 6355 3  XPCOM R: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x000B, 0x0000000000000000, *00000016F42FEC30 = 000001836AD8CAE0 ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsIRegisterAccess*)00000183702A15D8 )->requestRegisterRead( 000001836AD8D5A0, true, 000001836F9702C0, 00000016F42FE9D8 )
    0x00002034 6355 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_READ_MEM added to polling loop by class DSP_CO_USER
    0x00002034 6355 3  XPCOM R: ( (dsIRegisterAccess*)00000183702A15D8 )->requestRegisterRead( 000001836AD8D5A0, true, 000001836F9702C0, *00000016F42FE9D8 = 000001836AD53570 ) = 0x00000000
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6355 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6355 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 499 ms
    0x0000466C 6355 4  POLL I: TimeToSleep() found shorter sleep time of 499 ms from class DevicePollFrequencyManager
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6355 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6355 4  POLL I: Yielding to other threads
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_ABORT_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Firing DSP_MEM_EVENT to class DSP_CO_USER
    0x0000466C 6356 3 CORTEX_M4_0 POLL C: Firing of DSP_MEM_EVENT complete
    0x0000466C 6356 3 CORTEX_M4_0 POLL C: Firing DSP_REQ_EVENT to class DSP_CO_USER
    0x00004768 6356 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x0000466C 6356 3  XPCOM C: ( (dsIObjectEventCallback*)000001836AD8C4A0 )->onEvent( 000001836F4E8080 )
    0x0000466C 6356 3  XPCOM C: ( (nsISupports*)000001836F4E8088 )->queryInterface( 000001836FF064C0, 00000016F4EFCE48 )
    0x0000466C 6356 3  XPCOM R: ( (nsISupports*)000001836F4E8088 )->queryInterface( 000001836FF064C0, *00000016F4EFCE48 = 000001836F4E8080 ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegister*)000001836AD8D5A0 )->getValue( 000001836AD8CAE0, 0x00000000, 00000016F4EFCC60 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegister*)000001836AD8D5A0 )->getValue( 000001836AD8CAE0, 0x00000000, *00000016F4EFCC60 = 0x00200000 ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterAccessEventData*)000001836F4E8080 )->wasRequestAborted( 00000016F4EFCCD0 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterAccessEventData*)000001836F4E8080 )->wasRequestAborted( *00000016F4EFCCD0 = true ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM R: ( (dsIObjectEventCallback*)000001836AD8C4A0 )->onEvent( 000001836F4E8080 ) = 0x00000000
    0x0000466C 6356 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6356 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6356 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x0000466C 6356 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6356 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 499 ms
    0x0000466C 6356 4  POLL I: TimeToSleep() found shorter sleep time of 499 ms from class DevicePollFrequencyManager
    0x0000466C 6356 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00004768 6356 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6356 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6356 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6356 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6362 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6362 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6362 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88E60, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88E60, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6363 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88D20, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88D20, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B889E0, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B889E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6363 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88C40, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88C40, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6363 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6364 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B889E0, 00000016F231D358 )
    0x00004768 6364 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B889E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6364 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88BC0, 00000016F231D358 )
    0x00004768 6364 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88BC0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6364 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6364 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6366 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x00004768 6366 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x00002D54 6366 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 6366 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00004768 6366 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x00002D54 6366 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00004768 6366 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x00002D54 6366 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x00002D54 6367 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 6367 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002D54 6367 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 6367 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x00004768 6368 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 6368 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6370 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B889E0, 00000016F231D358 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B889E0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88BC0, 00000016F231D358 )
    0x00004768 6370 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88BC0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6370 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6370 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88BC0, 00000016F231D358 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88BC0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88C80, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88C80, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6371 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88D20, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88D20, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88D20, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88D20, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6371 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B89640, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B89640, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B89920, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B89920, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x0000466C 6857 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6857 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 6857 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 6857 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6857 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4499 ms
    0x0000466C 6857 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 6857 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 6857 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4499 ms
    0x0000466C 7361 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 7361 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 7361 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 7361 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 7361 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3994 ms
    0x0000466C 7361 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 7361 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 7361 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3994 ms
    0x0000466C 7866 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 7866 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 7866 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 7866 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 7866 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3490 ms
    0x0000466C 7866 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 7866 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 7866 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3490 ms
    0x0000415C 8026 3  XPCOM C: ( (dsIDebugger*)000001833C305100 )->deConfigure()
    0x0000415C 8026 3  PERF I: Deconfigure() starting...
    0x0000415C 8026 3  XPCOM R: ( (dsIDebugger*)000001833C305100 )->deConfigure() = 0x00000000
    0x0000466C 8026 3  POLL C: SystemDeInitializerImpl::Poll()
    0x0000466C 8026 3  POLL C: SystemDeInitializerImpl::BeginShutdown()
    0x0000466C 8026 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D09F138)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsISimpleEvent,void,class dsISimpleEventCallback> > (this = 000001836D1F89B8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F94F8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F8808)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIBooleanEvent,int,class dsIBooleanEventCallback> > (this = 000001836D1F92B8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F9348)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F8F58)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FC71108)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIBooleanEvent,int,class dsIBooleanEventCallback> > (this = 000001836FA92278)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA91738)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsISimpleEvent,void,class dsISimpleEventCallback> > (this = 000001836FA91DF8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA92158)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA914F8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIBooleanEvent,int,class dsIBooleanEventCallback> > (this = 000001836FA91858)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA90BF8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA909B8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA918E8)
    0x00004768 8026 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CEB0 )
    0x0000466C 8026 2  CALLSTACK D: CallStack::~CallStack 000001836CE41FF0
    0x0000466C 8026 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 3 CS_DAP_0 TA C: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 3 CS_DAP_0 TA R: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 3 CORTEX_M4_0 TA C: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 3 CORTEX_M4_0 TA R: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 3  LIB C: dlsym( 00007FF9C3360000, "CleanupCtools" )
    0x0000466C 8026 3  LIB R: dlsym( 00007FF9C3360000, "CleanupCtools" ) = 00007FF9C33F1D40
    0x0000466C 8026 3  LIB C: dlsym( 00007FF9C3360000, "CleanupCtoolsAsync" )
    0x0000466C 8026 3  LIB R: dlsym( 00007FF9C3360000, "CleanupCtoolsAsync" ) = 00007FF9C33F2210
    0x0000466C 8026 3  CT C: CleanupCtoolsAsync()
    0x0000466C 8026 3  PERF I: CleanupCtoolsAsync() starting...
    0x000033FC 8046 3  CT C: CleanupCallback::OnComplete()
    0x000033FC 8046 3  PERF I: CleanupCtoolsAsync() finished:  0.016642s wall, 0.015625s user + 0.000000s system = 0.015625s CPU (93.9%)
    
    0x000033FC 8046 3  CT R: CleanupCallback::OnComplete()
    0x0000466C 8280 3  CT R: CleanupCtoolsAsync()
    0x0000466C 8280 3  POLL R: SystemDeInitializerImpl::BeginShutdown()
    0x0000466C 8280 3  POLL R: SystemDeInitializerImpl::Poll()
    0x0000466C 8280 4  POLL I: Yielding to other threads for 10 ms
    0x00004768 8280 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CEB0 = (null) ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "TargetType" returned an error condition (0x80780001)
    0x000035DC 8280 3 CORTEX_M4_0 FLASH C: IFlashDevice::Delete()
    0x000035DC 8280 3 CORTEX_M4_0 FLASH R: IFlashDevice::Delete()
    0x000035DC 8280 3  LIB C: dlclose( 00007FF9FBF80000 )
    0x00004768 8280 3  XPCOM C: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( 00000016F231CD60 )
    0x00004768 8280 3  XPCOM R: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( *00000016F231CD60 = 0000000000000000 ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "getGelMenu" returned an error condition (0x80780001)
    0x000035DC 8280 3  LIB R: dlclose( 00007FF9FBF80000 ) = 1
    0x000035DC 8280 4  OFS_DWARF I: Destructing DWARF reader
    0x000035DC 8280 4  OFS_DWARF I: Destructing DWARF reader : dwarf_load
    0x000035DC 8280 4  OFS I: Destructing ELF reader : string table
    0x000035DC 8280 3  LIB C: dlclose( 00007FF9F4040000 )
    0x000035DC 8280 3  LIB R: dlclose( 00007FF9F4040000 ) = 1
    0x000035DC 8280 4  OFS D: OFS memory block size: 0x10000. Number of blocks used: 0
    0x00002D54 8280 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 8280 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = false ) = 0x80780001
    0x00002D54 8280 3  XPCOM E: Throwing java exception: The function "CapableExecutionControl" returned an error condition (0x80780001)
    0x00004768 8280 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getCurrentClockEvent( 00000016F231D660 )
    0x00004768 8280 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getCurrentClockEvent( *00000016F231D660 = 0x00000000 ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "getCurrentClockEvent" returned an error condition (0x80780001)
    0x00004768 8280 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( 00000016F231D670 )
    0x00004768 8280 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( *00000016F231D670 = false ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "getClockEnabled" returned an error condition (0x80780001)
    0x00004768 8298 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 8298 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x80780001
    0x00004768 8298 3  XPCOM E: Throwing java exception: The function "Allowed" returned an error condition (0x80780001)
    0x0000466C 8312 3  POLL C: SystemDeInitializerImpl::Poll()
    0x0000466C 8312 3  POLL C: SystemDeInitializerImpl::ThreadsCompleted()
    0x0000466C 8312 3  POLL R: SystemDeInitializerImpl::ThreadsCompleted() = 1, m_nActiveThreads = 0
    0x0000466C 8312 3  POLL C: SystemDeInitializerImpl::FinishShutdown()
    0x0000466C 8312 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8312 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8312 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_PAUSE_PROFILE_COUNTER added to polling loop by class CSharedProfileManager
    0x0000466C 8312 3  LIB C: dlclose( 00007FFA169A0000 )
    0x0000466C 8312 3  LIB R: dlclose( 00007FFA169A0000 ) = 1
    0x0000466C 8313 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8313 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8313 3  PERF I: GTI_QUIT starting...
    0x0000466C 8313 3 CORTEX_M4_0 GTI C: GTI_QUIT( 0x000001836ADF17A0 )
    0x0000466C 8315 3 CORTEX_M4_0 GTI R: GTI_QUIT( 0x000001836ADF17A0 ) = 0x00000000
    0x0000466C 8315 3  PERF I: GTI_QUIT finished:  0.002354s wall, 0.000000s user + 0.000000s system = 0.000000s CPU (n/a%)
    
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrStepAPI( *00000183727909C0, TPI_STEP_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrStepAPI( *00000183727909C0, TPI_STEP_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrStepAPI( *000001836FCBB820, TPI_STEP_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrStepAPI( *000001836FCBB820, TPI_STEP_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrStepAPI( *000001837278FD30, TPI_STEP_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrStepAPI( *000001837278FD30, TPI_STEP_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrGenAPI( *000001837278F970, TPI_GEN_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrGenAPI( *000001837278F970, TPI_GEN_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3  LIB C: dlclose( 000001836E3D0000 )
    0x0000466C 8315 3  LIB R: dlclose( 000001836E3D0000 ) = 1
    0x0000466C 8316 3  LIB C: dlclose( 0000018370500000 )
    0x0000466C 8316 3  LIB R: dlclose( 0000018370500000 ) = 1
    0x0000466C 8316 3 CS_DAP_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8316 3 CS_DAP_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8316 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8317 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8317 3  PERF I: GTI_QUIT starting...
    0x0000466C 8317 3 CS_DAP_0 GTI C: GTI_QUIT( 0x000001836D0B3160 )
    0x00004768 8317 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 8317 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 00000183727655F0, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 00000183727655F0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 00000183727658F0, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 00000183727658F0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 8317 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372765850, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372765850, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372765850, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372765850, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x0000466C 8323 3 CS_DAP_0 GTI R: GTI_QUIT( 0x000001836D0B3160 ) = 0x00000000
    0x0000466C 8323 3  PERF I: GTI_QUIT finished:  0.006777s wall, 0.015625s user + 0.015625s system = 0.031250s CPU (461.1%)
    
    0x0000466C 8323 3 CS_DAP_0 TPI C: TpiSvrGenAPI( *000001836FCB92A0, TPI_GEN_CMD_DESTRUCTOR )
    0x0000466C 8323 3 CS_DAP_0 TPI R: TpiSvrGenAPI( *000001836FCB92A0, TPI_GEN_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8323 3  LIB C: dlclose( 000001836E340000 )
    0x0000466C 8323 3  LIB R: dlclose( 000001836E340000 ) = 1
    0x0000466C 8323 3  LIB C: dlclose( 000001836E410000 )
    0x0000466C 8323 3  LIB R: dlclose( 000001836E410000 ) = 1
    0x0000466C 8323 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8323 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8323 3  LIB C: dlclose( 00007FFA01EC0000 )
    0x0000466C 8323 3  LIB R: dlclose( 00007FFA01EC0000 ) = 1
    0x0000466C 8323 3  LIB C: dlclose( 00007FF9C3360000 )
    0x0000466C 8323 3  LIB R: dlclose( 00007FF9C3360000 ) = 1
    0x0000466C 8323 3  PERF I: Deconfigure() finished:  0.297548s wall, 0.218750s user + 0.046875s system = 0.265625s CPU (89.3%)
    
    0x0000466C 8323 3  COM_DBG_IF C: class dsDebugger::OnDeConfigured()
    0x0000466C 8323 3  XPCOM C: ( (dsISimpleEventCallback*)000001836079D9F0 )->onEvent()
    0x0000466C 8343 3  XPCOM R: ( (dsISimpleEventCallback*)000001836079D9F0 )->onEvent() = 0x00000000
    0x0000466C 8343 3  COM_DBG_IF R: class dsDebugger::OnDeConfigured()
    0x0000466C 8343 3  POLL R: SystemDeInitializerImpl::FinishShutdown()
    0x00004768 8667 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CEB0 )
    0x00004768 8667 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CEB0 = (null) ) = 0x80780001
    0x00004768 8667 3  XPCOM E: Throwing java exception: The function "TargetType" returned an error condition (0x80780001)
    0x00004768 8667 3  XPCOM C: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( 00000016F231CD60 )
    0x00004768 8667 3  XPCOM R: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( *00000016F231CD60 = 0000000000000000 ) = 0x80780001
    0x00004768 8667 3  XPCOM E: Throwing java exception: The function "getGelMenu" returned an error condition (0x80780001)
    

  • Chester,

    I tried the debugging steps that you mentioned. None appeared to work. The output from the verbose flag is,

    CORTEX_M4_0: GEL Output: 
    Memory Map Initialization Complete
    CORTEX_M4_0: Writing Flash @ Address 0x00000000 of Length 0x00007778
    CORTEX_M4_0: Performing Mass Erase on Flash memory
    CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
    CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
    

    I can step through main(), the program appears to be getting stuck at,

    //
        // Wait for the link to become active.
        //
        UpdateStatus("Waiting for Link.");
        while((MAP_EMACPHYRead(EMAC0_BASE, 0, EPHY_BMSR) &
               EPHY_BMSR_LINKSTAT) == 0)
        {
        }

    The debug server log is,

    0x0000466C 0 3  COM_DBG_IF C: class XPCOMLogger::CoLogger::OnEnabledChanged()
    0x0000466C 0 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0CD650 )->onEvent()
    0x0000466C 0 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0CD650 )->onEvent() = 0x00000000
    0x0000466C 0 3  COM_DBG_IF R: class XPCOMLogger::CoLogger::OnEnabledChanged()
    0x0000466C 0 3 CORTEX_M4_0 GEL I: Evaluation of "DEBUG_LogEnable(1)" completed - Value: 0 Location: unknown
    0x0000466C 0 3  XPCOM C: ( (dsIObjectEventCallback*)000001836FF45860 )->onEvent( 00000183702220C8 )
    0x0000466C 0 3  XPCOM C: ( (nsISupports*)00000183702220A0 )->queryInterface( 000001836FF06CE0, 00000016F4EFC738 )
    0x0000466C 0 3  XPCOM R: ( (nsISupports*)00000183702220A0 )->queryInterface( 000001836FF06CE0, *00000016F4EFC738 = 00000183702220C8 ) = 0x00000000
    0x0000466C 1 3  XPCOM C: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getExpression( 00000016F4EFC660 )
    0x0000466C 1 3  XPCOM R: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getExpression( *00000016F4EFC660 = DEBUG_LogEnable(1) ) = 0x00000000
    0x0000466C 1 3  XPCOM R: ( (dsIObjectEventCallback*)000001836FF45860 )->onEvent( 00000183702220C8 ) = 0x00000000
    0x000041DC 1 3  XPCOM C: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getErrorMessage( 00000016F60FD5E0 )
    0x000041DC 1 3  XPCOM R: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getErrorMessage( *00000016F60FD5E0 =  ) = 0x00000000
    0x0000466C 1 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 1 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 1 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 1 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 348 ms
    0x000041DC 1 3  XPCOM C: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getTargetData( 00000016F60FD650 )
    0x0000466C 1 4  POLL I: TimeToSleep() found shorter sleep time of 348 ms from class DevicePollFrequencyManager
    0x0000466C 1 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x000041DC 1 5  COM_DBG_IF I: Final Release for class CoValue (this = 000001836AB11AF0)
    0x000041DC 1 3  XPCOM R: ( (dsICExprEvaluatedEventData*)00000183702220C8 )->getTargetData( *00000016F60FD650 = 000001836FF45E20 ) = 0x00000000
    0x000041DC 1 3  XPCOM C: ( (dsITargetData*)000001836FF45E20 )->toLongLong( 00000016F60FD660 )
    0x000041DC 1 3  XPCOM R: ( (dsITargetData*)000001836FF45E20 )->toLongLong( *00000016F60FD660 = 0x0000000000000000 ) = 0x00000000
    0x0000466C 349 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 349 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 349 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 349 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 349 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 349 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 349 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 349 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 349 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4650 ms
    0x0000466C 349 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 349 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 349 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4650 ms
    0x0000466C 852 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 852 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 852 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 852 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 852 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 852 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 852 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 852 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 852 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4147 ms
    0x0000466C 852 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 852 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 852 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4147 ms
    0x0000466C 1362 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 1362 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 1362 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 1362 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 1362 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 1362 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 1362 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 1362 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 1362 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3637 ms
    0x0000466C 1362 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 1362 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 1362 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3637 ms
    0x0000466C 1871 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 1871 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 1871 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 1871 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 1871 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 1871 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 1871 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 1871 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 1871 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3128 ms
    0x0000466C 1871 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 1871 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 1871 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3128 ms
    0x0000466C 2373 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 2373 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 2373 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 2373 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 2373 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 2373 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 2373 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 2373 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 2373 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2626 ms
    0x0000466C 2373 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 2373 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 2373 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2626 ms
    0x0000466C 2874 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 2874 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 2874 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 2874 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 2874 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 2874 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 2875 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 2875 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 2875 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2126 ms
    0x0000466C 2875 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 2875 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 2875 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 2126 ms
    0x0000466C 3376 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 3376 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 3376 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 3376 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 3376 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 3376 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 3376 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 3377 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 3377 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1623 ms
    0x0000466C 3377 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 3377 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 3377 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1623 ms
    0x0000466C 3880 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 3880 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 3880 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 3880 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 3880 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 3880 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 3880 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 3880 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 3880 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1119 ms
    0x0000466C 3880 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 3880 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 3880 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 1119 ms
    0x0000466C 4383 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 4383 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 4383 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 4383 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 4383 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 4383 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 4383 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 4383 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 4383 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 616 ms
    0x0000466C 4383 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 4383 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 4383 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 616 ms
    0x0000466C 4893 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 4893 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 4893 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 4893 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 4893 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 4893 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 4893 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 4893 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 4893 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 107 ms
    0x0000466C 4893 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 4893 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 4893 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 107 ms
    0x0000466C 4893 4  POLL I: TimeToSleep() found shorter sleep time of 107 ms from class DevicePollFrequencyManager
    0x0000466C 5001 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 391 ms
    0x0000466C 5001 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5001 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 5001 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5003 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 4, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5003 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_HALTED
    0x0000466C 5003 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5003 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5003 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 391 ms
    0x0000466C 5003 4  POLL I: TimeToSleep() found shorter sleep time of 391 ms from class DevicePollFrequencyManager
    0x0000466C 5003 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x0000466C 5396 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5396 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 5396 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 5396 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 5396 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 5396 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 5396 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 5396 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5396 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4606 ms
    0x0000466C 5396 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 5396 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 5396 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4606 ms
    0x00002D54 5844 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FED40 )
    0x00002D54 5844 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FED40 = true ) = 0x00000000
    0x00002D54 5844 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->run()
    0x00002D54 5844 3 CORTEX_M4_0 STATE I: Debugger execution state changed to EVENT_DSP_RUN
    0x00002D54 5844 3 CORTEX_M4_0 POLL C: Firing DSP_PRE_RUN to all DSP_USER's
    0x00002D54 5844 3 CORTEX_M4_0 POLL I: Beginning auto-cancel with 1 requests registered
    0x00002D54 5844 3 CORTEX_M4_0 POLL C: Firing of DSP_PRE_RUN complete
    0x00002D54 5844 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->run() = 0x00000000
    0x0000466C 5844 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_RUN
    0x0000466C 5845 3 CS_DAP_0 GEL I: Evaluating "OnChildRunning()"
    0x0000466C 5845 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class `anonymous namespace'::NullRequestNotification
    0x0000466C 5845 3 CORTEX_M4_0 POLL C: Firing DSP_RUNNING to all DSP_USER's
    0x0000466C 5845 3 CORTEX_M4_0 POLL I: Auto-cancel disabled
    0x0000466C 5845 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eRunning )
    0x0000466C 5845 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eRunning )
    0x0000466C 5845 3  COM_DBG_IF C: class DSP_CO_USER::OnRunning()
    0x0000466C 5845 3  XPCOM C: ( (dsISimpleEventCallback*)000001836CD1B010 )->onEvent()
    0x0000466C 5845 3  XPCOM R: ( (dsISimpleEventCallback*)000001836CD1B010 )->onEvent() = 0x00000000
    0x0000466C 5845 3  COM_DBG_IF R: class DSP_CO_USER::OnRunning()
    0x0000466C 5845 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5845 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent()
    0x0000466C 5845 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent() = 0x00000000
    0x0000466C 5845 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5845 3  COM_DBG_IF C: class DSP_CO_USER::OnExecutionStatusChanged()
    0x0000466C 5846 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AD810 )->onEvent()
    0x0000466C 5846 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFC9F0, 00000016F4EFCA08, 00000016F4EFCA20, 00000016F4EFCA38 )
    0x0000466C 5846 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFC9F0 = true, *00000016F4EFCA08 = false, *00000016F4EFCA20 = 0x00000005, *00000016F4EFCA38 = 0x00000001 ) = 0x00000000
    0x0000466C 5846 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFC970, 00000016F4EFC988, 00000016F4EFC9A0, 00000016F4EFC9B8 )
    0x0000466C 5846 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFC970 = true, *00000016F4EFC988 = false, *00000016F4EFC9A0 = 0x00000005, *00000016F4EFC9B8 = 0x00000001 ) = 0x00000000
    0x0000466C 5846 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AD810 )->onEvent() = 0x00000000
    0x0000466C 5846 3  COM_DBG_IF R: class DSP_CO_USER::OnExecutionStatusChanged()
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Firing DSP_CALLSTACK_INVALIDATED to all DSP_USER's
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Firing of DSP_CALLSTACK_INVALIDATED complete
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Firing of DSP_RUNNING complete
    0x0000466C 5846 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5846 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5846 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 5846 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5846 4  POLL I: Yielding to other threads
    0x0000466C 5846 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 5846 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 5846 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5846 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUN and status EVENT_DSP_RUN
    0x0000466C 5846 3  CT C: cToolsMgrIFDS::SendCtoolsEvent( 0, 1, 0000000000000000 )
    0x0000466C 5846 3  CT R: cToolsMgrIFDS::SendCtoolsEvent( 0, 1, 0000000000000000 ) = 0
    0x0000466C 5846 3 CORTEX_M4_0 GTI C: GTI_RUN_EX( 0x000001836ADF17A0, 0x00000000, *0x00000016F4EFE530 = { 0x00000001, 0x0000000C, 0x00000000 } )
    0x0000466C 5846 3 CORTEX_M4_0 GTI C: SyncMode::AboutToStepPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT C: StepPastBp::AboutToStepPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT R: StepPastBp::AboutToStepPast() = (null)
    0x0000466C 5846 3 CORTEX_M4_0 GTI R: SyncMode::AboutToStepPast() = (null)
    0x0000466C 5846 3 CORTEX_M4_0 GTI C: SyncMode::FinishedSteppingPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT C: StepPastBp::FinishedSteppingPast()
    0x0000466C 5846 3 CORTEX_M4_0 CT R: StepPastBp::FinishedSteppingPast() = (null)
    0x0000466C 5846 3 CORTEX_M4_0 GTI R: SyncMode::FinishedSteppingPast() = (null)
    0x00004768 5847 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 5899 3 CORTEX_M4_0 GTI R: GTI_RUN_EX( 0x000001836ADF17A0, 0x00000000, *0x00000016F4EFE530 = { 0x00000001, 0x0000000C, 0x00000000 } ) = 0x00000000
    0x0000466C 5899 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDC58 = 0x00000000, *0x00000016F4EFDC50 = 0x00000000, *0x00000016F4EFDC60 = 0x00000000, *0x00000016F4EFDC70 = 0x00000000, *0x00000016F4EFDC74 = 0x00000000, *0x00000016F4EFDC6C = 0x00000000, *0x00000016F4EFDC68 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 5899 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDC58 = 0x00000000, *0x00000016F4EFDC50 = 0x00000000, *0x00000016F4EFDC60 = 0x00000000, *0x00000016F4EFDC70 = 0x00000002, *0x00000016F4EFDC74 = 0x00000000, *0x00000016F4EFDC6C = 0x00000008, *0x00000016F4EFDC68 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 5899 3 CORTEX_M4_0 POLL C: Firing DSP_POST_RUNNING to all DSP_USER's
    0x0000466C 5899 3 CORTEX_M4_0 POLL C: Firing of DSP_POST_RUNNING complete
    0x0000466C 5899 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5902 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5902 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5902 3 CORTEX_M4_0 POLL C: Firing DSP_ALLOWED_ACCESS_CHANGED to all DSP_USER's
    0x0000466C 5902 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5902 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent()
    0x0000466C 5902 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent() = 0x00000000
    0x0000466C 5902 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 5902 3 CORTEX_M4_0 POLL C: Firing of DSP_ALLOWED_ACCESS_CHANGED complete
    0x0000466C 5902 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 5902 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 5902 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5902 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4  POLL I: Yielding to other threads
    0x0000466C 5902 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 5902 3 CS_DAP_0 POLL C: Firing DSP_REQ_EVENT to class `anonymous namespace'::NullRequestNotification
    0x0000466C 5902 3 CS_DAP_0 GEL I: Evaluation of "OnChildRunning()" failed: 'OnChildRunning()' not found
    0x0000466C 5902 3 CS_DAP_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 5902 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 5902 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5902 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4  POLL I: Yielding to other threads
    0x00002D54 5902 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x0000466C 5902 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE_STATUS_CHECK and status EVENT_DSP_HALT
    0x00004768 5902 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 5902 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 5902 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000D
    0x0000466C 5902 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_NON_DEBUG_NORMAL
    0x0000466C 5902 3 CS_DAP_0 STATE I: Debugger execution state changed to EVENT_DSP_HALT
    0x0000466C 5902 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002D54 5902 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00004768 5902 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 5902 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 5902 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5902 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5902 4  POLL I: Yielding to other threads for 10 ms
    0x00002D54 5902 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 5902 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = true ) = 0x00000000
    0x00002D54 5902 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 5902 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002D54 5902 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 5902 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = true ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5902 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 5902 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( 00000016F231BBE0 )
    0x00004768 5914 3  XPCOM R: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( *00000016F231BBE0 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIOSAwareManager*)000001836FC97230 )->IsOSAwareDebugEnabled( 00000016F231C2C0 )
    0x00004768 5914 3  XPCOM R: ( (dsIOSAwareManager*)000001836FC97230 )->IsOSAwareDebugEnabled( *00000016F231C2C0 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( 00000016F231C2D0 )
    0x00004768 5914 3  XPCOM R: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( *00000016F231C2D0 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C340 )
    0x00004768 5914 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Name( 00000016F231C310 )
    0x00004768 5914 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Name( *00000016F231C310 = Reset Emulator ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIGlobalBreakpoints*)00000183702A1660 )->GlobalBreakpoints( 00000016F231C400 )
    0x00004768 5914 3  XPCOM R: ( (dsIGlobalBreakpoints*)00000183702A1660 )->GlobalBreakpoints( *00000016F231C400 = false ) = 0x00000000
    0x00004768 5914 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( 00000016F231BB80 )
    0x00004768 5914 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( *00000016F231BB80 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C308 )
    0x00004768 5915 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C308 = 000001836FD18740 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C140 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C140 = 0x00000000 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06EC0, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06EC0, *00000016F231C168 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06EE0, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06EE0, *00000016F231C168 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C2E0 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C2E0 = true ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepIntoAllowed( 00000016F231C220 )
    0x00004768 5915 3  XPCOM R: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepIntoAllowed( *00000016F231C220 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C308 )
    0x00004768 5915 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C308 = 000001836FD18800 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C140 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C140 = 0x00000000 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF06840, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF06840, *00000016F231C168 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF067C0, 00000016F231C168 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF067C0, *00000016F231C168 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C2E0 )
    0x00004768 5915 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C2E0 = true ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIGlobalBreakpoints*)00000183702A1660 )->canModifyGlobalBreakpoints( 00000016F231C400 )
    0x00004768 5915 3  XPCOM R: ( (dsIGlobalBreakpoints*)00000183702A1660 )->canModifyGlobalBreakpoints( *00000016F231C400 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C330 )
    0x00004768 5915 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C330 = false ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0000, 00000016F231C1F8 )
    0x00004768 5915 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0000, *00000016F231C1F8 = true ) = 0x00000000
    0x00004768 5915 3  XPCOM C: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( 00000016F231BB80 )
    0x00004768 5915 3  XPCOM R: ( (dsIResetControl*)000001836FE9E6F0 )->CapableHaltOnReset( *00000016F231BB80 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( 00000016F231BB90 )
    0x00004768 5916 3  XPCOM R: ( (dsIOSAwareManager*)000001836FC97230 )->allowUserToModify( *00000016F231BB90 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C340 )
    0x00004768 5916 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C340 )
    0x00004768 5916 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5916 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C340 )
    0x00004768 5916 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C340 = false ) = 0x00000000
    0x00004768 5928 3  XPCOM C: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepOverAllowed( 00000016F231C220 )
    0x00004768 5928 3  XPCOM R: ( (dsISourceStepping*)00000183702A15F0 )->AsmStepOverAllowed( *00000016F231C220 = false ) = 0x00000000
    0x00004768 5934 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CC30 )
    0x00004768 5934 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CC30 = TMS470REX ) = 0x00000000
    0x00002D54 5935 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 5935 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002D54 5935 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 5935 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = true ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 5936 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 5936 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF073C0, 00000016F231D358 )
    0x00004768 5936 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF073C0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF073C0, 00000016F231D358 )
    0x00004768 5936 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF073C0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5936 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 5936 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 5937 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07760, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07760, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 5937 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF075A0, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF075A0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06F80, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06F80, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 5937 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07160, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07160, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5937 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 5937 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 5939 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 5939 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5939 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 5939 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5939 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 5939 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x0000466C 5956 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 446 ms
    0x0000466C 5956 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5956 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5956 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5958 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5958 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5958 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5958 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5958 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 446 ms
    0x0000466C 5958 4  POLL I: TimeToSleep() found shorter sleep time of 446 ms from class DevicePollFrequencyManager
    0x0000466C 5958 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5958 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5958 4  POLL I: Yielding to other threads
    0x0000466C 5958 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 444 ms
    0x0000466C 5958 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5959 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5959 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5961 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5961 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5961 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5961 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5961 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 444 ms
    0x0000466C 5961 4  POLL I: TimeToSleep() found shorter sleep time of 444 ms from class DevicePollFrequencyManager
    0x0000466C 5961 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5961 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5961 4  POLL I: Yielding to other threads
    0x0000466C 5961 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 441 ms
    0x0000466C 5961 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5961 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5961 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5964 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5964 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5964 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5964 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5964 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 441 ms
    0x0000466C 5964 4  POLL I: TimeToSleep() found shorter sleep time of 441 ms from class DevicePollFrequencyManager
    0x0000466C 5964 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5964 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5964 4  POLL I: Yielding to other threads
    0x0000466C 5964 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 438 ms
    0x0000466C 5964 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5964 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5964 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5967 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5967 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5967 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5967 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5967 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 438 ms
    0x0000466C 5967 4  POLL I: TimeToSleep() found shorter sleep time of 438 ms from class DevicePollFrequencyManager
    0x0000466C 5967 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5967 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5967 4  POLL I: Yielding to other threads
    0x0000466C 5967 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 435 ms
    0x0000466C 5967 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5967 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5967 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5969 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5969 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5969 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5969 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5970 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 435 ms
    0x0000466C 5970 4  POLL I: TimeToSleep() found shorter sleep time of 435 ms from class DevicePollFrequencyManager
    0x0000466C 5970 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5970 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5970 4  POLL I: Yielding to other threads
    0x0000466C 5970 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x0000466C 5970 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5970 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5970 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5972 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5972 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5972 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5972 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 432 ms
    0x0000466C 5972 4  POLL I: TimeToSleep() found shorter sleep time of 432 ms from class DevicePollFrequencyManager
    0x0000466C 5972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5972 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5972 4  POLL I: Yielding to other threads
    0x0000466C 5972 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 430 ms
    0x0000466C 5972 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5972 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5972 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5975 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5975 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5975 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5975 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5975 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 430 ms
    0x0000466C 5975 4  POLL I: TimeToSleep() found shorter sleep time of 430 ms from class DevicePollFrequencyManager
    0x0000466C 5975 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5975 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5975 4  POLL I: Yielding to other threads
    0x0000466C 5975 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 427 ms
    0x0000466C 5975 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5975 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5975 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5978 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5978 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5978 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5978 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5978 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 427 ms
    0x0000466C 5978 4  POLL I: TimeToSleep() found shorter sleep time of 427 ms from class DevicePollFrequencyManager
    0x0000466C 5978 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5978 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5978 4  POLL I: Yielding to other threads
    0x0000466C 5978 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 424 ms
    0x0000466C 5978 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5978 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5978 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5980 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5980 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5980 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5980 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5980 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 424 ms
    0x0000466C 5980 4  POLL I: TimeToSleep() found shorter sleep time of 424 ms from class DevicePollFrequencyManager
    0x0000466C 5981 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5981 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5981 4  POLL I: Yielding to other threads
    0x0000466C 5981 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 421 ms
    0x0000466C 5981 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5981 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5981 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5983 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5983 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5983 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5983 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5983 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 421 ms
    0x0000466C 5983 4  POLL I: TimeToSleep() found shorter sleep time of 421 ms from class DevicePollFrequencyManager
    0x0000466C 5983 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5983 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5983 4  POLL I: Yielding to other threads
    0x0000466C 5983 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 419 ms
    0x0000466C 5983 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5983 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5983 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5986 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5986 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5986 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5986 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5986 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 419 ms
    0x0000466C 5986 4  POLL I: TimeToSleep() found shorter sleep time of 419 ms from class DevicePollFrequencyManager
    0x0000466C 5986 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5986 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5986 4  POLL I: Yielding to other threads
    0x0000466C 5986 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 416 ms
    0x0000466C 5986 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5986 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5986 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5988 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5988 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5988 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5988 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5988 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 416 ms
    0x0000466C 5988 4  POLL I: TimeToSleep() found shorter sleep time of 416 ms from class DevicePollFrequencyManager
    0x0000466C 5988 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5988 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5988 4  POLL I: Yielding to other threads
    0x0000466C 5988 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 414 ms
    0x0000466C 5988 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5988 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5988 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5991 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5991 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5991 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5991 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5991 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 414 ms
    0x0000466C 5991 4  POLL I: TimeToSleep() found shorter sleep time of 414 ms from class DevicePollFrequencyManager
    0x0000466C 5991 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5991 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5991 4  POLL I: Yielding to other threads
    0x0000466C 5991 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 411 ms
    0x0000466C 5991 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5991 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5991 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 5993 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 5993 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06FA0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF06FA0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06FA0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF06FA0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 5993 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, 00000016F231D358 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF072E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 5993 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 5993 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x0000466C 5994 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5994 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5994 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5994 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5994 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 411 ms
    0x0000466C 5994 4  POLL I: TimeToSleep() found shorter sleep time of 411 ms from class DevicePollFrequencyManager
    0x0000466C 5994 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5994 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5994 4  POLL I: Yielding to other threads
    0x0000466C 5994 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 408 ms
    0x0000466C 5994 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5994 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5994 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 5997 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 5997 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 5997 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 5997 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 5997 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 408 ms
    0x0000466C 5997 4  POLL I: TimeToSleep() found shorter sleep time of 408 ms from class DevicePollFrequencyManager
    0x0000466C 5997 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5997 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 5997 4  POLL I: Yielding to other threads
    0x0000466C 5997 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 405 ms
    0x0000466C 5997 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 5997 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 5997 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6000 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6000 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6000 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6000 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6000 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 405 ms
    0x0000466C 6000 4  POLL I: TimeToSleep() found shorter sleep time of 405 ms from class DevicePollFrequencyManager
    0x0000466C 6000 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6000 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6000 4  POLL I: Yielding to other threads
    0x0000466C 6000 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 402 ms
    0x0000466C 6001 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6001 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6001 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6004 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6004 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6004 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6004 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6004 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 402 ms
    0x0000466C 6004 4  POLL I: TimeToSleep() found shorter sleep time of 402 ms from class DevicePollFrequencyManager
    0x0000466C 6004 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6004 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6004 4  POLL I: Yielding to other threads
    0x0000466C 6004 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 398 ms
    0x0000466C 6004 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6004 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6004 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6007 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6007 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6007 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6007 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6007 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 398 ms
    0x0000466C 6007 4  POLL I: TimeToSleep() found shorter sleep time of 398 ms from class DevicePollFrequencyManager
    0x0000466C 6007 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6007 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6007 4  POLL I: Yielding to other threads
    0x0000466C 6007 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 395 ms
    0x0000466C 6007 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6007 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6007 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6009 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6009 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6010 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6010 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6010 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 395 ms
    0x0000466C 6010 4  POLL I: TimeToSleep() found shorter sleep time of 395 ms from class DevicePollFrequencyManager
    0x0000466C 6010 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6010 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6010 4  POLL I: Yielding to other threads
    0x0000466C 6010 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 392 ms
    0x0000466C 6010 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6010 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6010 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6013 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6013 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6013 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6013 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6013 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 392 ms
    0x0000466C 6013 4  POLL I: TimeToSleep() found shorter sleep time of 392 ms from class DevicePollFrequencyManager
    0x0000466C 6013 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6013 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6013 4  POLL I: Yielding to other threads
    0x0000466C 6013 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 389 ms
    0x0000466C 6013 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6013 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6013 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6015 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6016 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6016 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6016 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6016 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 389 ms
    0x0000466C 6016 4  POLL I: TimeToSleep() found shorter sleep time of 389 ms from class DevicePollFrequencyManager
    0x0000466C 6016 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6016 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6016 4  POLL I: Yielding to other threads
    0x0000466C 6016 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 386 ms
    0x0000466C 6016 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6016 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6016 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6018 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6018 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6018 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6018 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6018 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 386 ms
    0x0000466C 6018 4  POLL I: TimeToSleep() found shorter sleep time of 386 ms from class DevicePollFrequencyManager
    0x0000466C 6018 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6019 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6019 4  POLL I: Yielding to other threads
    0x0000466C 6019 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 383 ms
    0x0000466C 6019 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6019 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6019 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6021 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6021 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6021 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6021 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6021 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 383 ms
    0x0000466C 6021 4  POLL I: TimeToSleep() found shorter sleep time of 383 ms from class DevicePollFrequencyManager
    0x0000466C 6021 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6021 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6021 4  POLL I: Yielding to other threads
    0x0000466C 6021 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 381 ms
    0x0000466C 6021 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6021 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6021 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6024 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6024 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6024 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6024 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6024 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 381 ms
    0x0000466C 6024 4  POLL I: TimeToSleep() found shorter sleep time of 381 ms from class DevicePollFrequencyManager
    0x0000466C 6024 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6024 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6024 4  POLL I: Yielding to other threads
    0x0000466C 6024 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 378 ms
    0x0000466C 6024 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6024 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6024 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6026 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6026 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6026 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6026 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6026 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 378 ms
    0x0000466C 6027 4  POLL I: TimeToSleep() found shorter sleep time of 378 ms from class DevicePollFrequencyManager
    0x0000466C 6027 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6027 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6027 4  POLL I: Yielding to other threads
    0x0000466C 6027 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 375 ms
    0x0000466C 6027 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6027 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6027 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6029 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6029 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6029 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6029 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6029 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 375 ms
    0x0000466C 6029 4  POLL I: TimeToSleep() found shorter sleep time of 375 ms from class DevicePollFrequencyManager
    0x0000466C 6029 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6029 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6029 4  POLL I: Yielding to other threads
    0x0000466C 6029 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 373 ms
    0x0000466C 6029 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6029 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6029 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6031 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6031 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6031 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6031 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6031 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 373 ms
    0x0000466C 6031 4  POLL I: TimeToSleep() found shorter sleep time of 373 ms from class DevicePollFrequencyManager
    0x0000466C 6031 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6031 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6032 4  POLL I: Yielding to other threads
    0x0000466C 6032 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 370 ms
    0x0000466C 6032 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6032 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6032 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6034 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6034 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6034 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6034 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6034 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 370 ms
    0x0000466C 6034 4  POLL I: TimeToSleep() found shorter sleep time of 370 ms from class DevicePollFrequencyManager
    0x0000466C 6034 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6034 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6034 4  POLL I: Yielding to other threads
    0x0000466C 6034 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 368 ms
    0x0000466C 6034 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6034 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6034 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6037 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6037 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6037 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6037 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6037 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 368 ms
    0x0000466C 6037 4  POLL I: TimeToSleep() found shorter sleep time of 368 ms from class DevicePollFrequencyManager
    0x0000466C 6037 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6037 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6037 4  POLL I: Yielding to other threads
    0x0000466C 6037 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 365 ms
    0x0000466C 6037 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6037 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6037 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6039 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6039 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6039 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6039 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6039 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 365 ms
    0x0000466C 6039 4  POLL I: TimeToSleep() found shorter sleep time of 365 ms from class DevicePollFrequencyManager
    0x0000466C 6039 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6039 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6039 4  POLL I: Yielding to other threads
    0x0000466C 6039 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 363 ms
    0x0000466C 6039 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6039 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6039 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6042 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6042 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6042 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6042 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6042 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 363 ms
    0x0000466C 6042 4  POLL I: TimeToSleep() found shorter sleep time of 363 ms from class DevicePollFrequencyManager
    0x0000466C 6042 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6042 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6042 4  POLL I: Yielding to other threads
    0x0000466C 6042 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 360 ms
    0x0000466C 6042 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6042 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6042 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6044 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6044 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6044 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6044 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6044 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 360 ms
    0x0000466C 6044 4  POLL I: TimeToSleep() found shorter sleep time of 360 ms from class DevicePollFrequencyManager
    0x0000466C 6044 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6044 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6044 4  POLL I: Yielding to other threads
    0x0000466C 6044 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 358 ms
    0x0000466C 6044 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6044 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6044 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6046 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6046 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6046 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6046 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6046 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 358 ms
    0x0000466C 6046 4  POLL I: TimeToSleep() found shorter sleep time of 358 ms from class DevicePollFrequencyManager
    0x0000466C 6046 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6046 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6047 4  POLL I: Yielding to other threads
    0x0000466C 6047 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 355 ms
    0x0000466C 6047 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6047 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6047 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6049 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6049 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6049 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6049 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6049 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 355 ms
    0x0000466C 6049 4  POLL I: TimeToSleep() found shorter sleep time of 355 ms from class DevicePollFrequencyManager
    0x0000466C 6049 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6049 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6049 4  POLL I: Yielding to other threads
    0x0000466C 6049 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 353 ms
    0x0000466C 6049 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6049 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6049 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6052 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6052 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6052 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6052 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6052 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 353 ms
    0x0000466C 6052 4  POLL I: TimeToSleep() found shorter sleep time of 353 ms from class DevicePollFrequencyManager
    0x0000466C 6052 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6052 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6052 4  POLL I: Yielding to other threads
    0x0000466C 6052 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 351 ms
    0x0000466C 6052 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6052 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6052 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6054 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6054 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6054 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6054 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6054 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 351 ms
    0x0000466C 6054 4  POLL I: TimeToSleep() found shorter sleep time of 351 ms from class DevicePollFrequencyManager
    0x0000466C 6054 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6054 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6054 4  POLL I: Yielding to other threads
    0x0000466C 6054 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 349 ms
    0x0000466C 6054 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6054 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6054 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6057 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6057 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6057 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6057 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6057 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 349 ms
    0x0000466C 6057 4  POLL I: TimeToSleep() found shorter sleep time of 349 ms from class DevicePollFrequencyManager
    0x0000466C 6057 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6057 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6057 4  POLL I: Yielding to other threads
    0x0000466C 6057 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 346 ms
    0x0000466C 6057 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6057 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6057 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6059 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6059 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6059 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6059 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6059 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 346 ms
    0x0000466C 6059 4  POLL I: TimeToSleep() found shorter sleep time of 346 ms from class DevicePollFrequencyManager
    0x0000466C 6059 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6059 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6059 4  POLL I: Yielding to other threads
    0x0000466C 6059 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 344 ms
    0x0000466C 6059 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6059 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6059 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6061 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6061 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6061 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6062 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6062 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 344 ms
    0x0000466C 6062 4  POLL I: TimeToSleep() found shorter sleep time of 344 ms from class DevicePollFrequencyManager
    0x0000466C 6062 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6062 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6062 4  POLL I: Yielding to other threads
    0x0000466C 6062 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 341 ms
    0x0000466C 6062 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6062 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6062 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6064 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6064 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6064 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6064 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6064 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 341 ms
    0x0000466C 6064 4  POLL I: TimeToSleep() found shorter sleep time of 341 ms from class DevicePollFrequencyManager
    0x0000466C 6064 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6064 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6064 4  POLL I: Yielding to other threads
    0x0000466C 6064 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 339 ms
    0x0000466C 6064 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6064 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6064 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6066 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6066 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6066 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6066 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6066 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 339 ms
    0x0000466C 6066 4  POLL I: TimeToSleep() found shorter sleep time of 339 ms from class DevicePollFrequencyManager
    0x0000466C 6066 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6066 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6066 4  POLL I: Yielding to other threads
    0x0000466C 6067 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 336 ms
    0x0000466C 6067 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6067 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6067 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6069 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6069 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6069 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6069 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6069 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 336 ms
    0x0000466C 6069 4  POLL I: TimeToSleep() found shorter sleep time of 336 ms from class DevicePollFrequencyManager
    0x0000466C 6069 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6069 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6069 4  POLL I: Yielding to other threads
    0x0000466C 6069 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 334 ms
    0x0000466C 6069 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6069 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6069 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 6070 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C740 )
    0x00004768 6070 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C740 = false ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C850 )
    0x00004768 6070 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C850 = false ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C718 )
    0x00004768 6070 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C718 = 000001836FD18740 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C550 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF072E0, 00000016F231C578 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF072E0, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF072E0, 00000016F231C578 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF072E0, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C828 )
    0x00004768 6070 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C828 = 000001836FD18740 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C660 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07BE0, 00000016F231C688 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07BE0, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E60, 00000016F231C688 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E60, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6070 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C718 )
    0x00004768 6070 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C718 = 000001836FD18800 ) = 0x00000000
    0x00004768 6070 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C550 )
    0x00004768 6070 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07C80, 00000016F231C578 )
    0x00004768 6071 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07C80, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07800, 00000016F231C578 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07800, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C828 )
    0x00004768 6071 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C828 = 000001836FD18800 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C660 )
    0x00004768 6071 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07CA0, 00000016F231C688 )
    0x00004768 6071 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07CA0, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07D60, 00000016F231C688 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07D60, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6071 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6071 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C750 )
    0x0000466C 6071 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6071 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6071 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6071 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6071 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 334 ms
    0x0000466C 6071 4  POLL I: TimeToSleep() found shorter sleep time of 334 ms from class DevicePollFrequencyManager
    0x0000466C 6071 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6071 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6071 4  POLL I: Yielding to other threads for 10 ms
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C750 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C750 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C860 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C860 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6072 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C860 )
    0x00004768 6072 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x0000466C 6094 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 309 ms
    0x0000466C 6094 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6094 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6094 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6097 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6097 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6097 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6097 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6097 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 309 ms
    0x0000466C 6098 4  POLL I: TimeToSleep() found shorter sleep time of 309 ms from class DevicePollFrequencyManager
    0x0000466C 6098 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6098 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6098 4  POLL I: Yielding to other threads
    0x0000466C 6098 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 305 ms
    0x0000466C 6098 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6098 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6098 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6101 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6101 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6101 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6101 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6101 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 305 ms
    0x0000466C 6101 4  POLL I: TimeToSleep() found shorter sleep time of 305 ms from class DevicePollFrequencyManager
    0x0000466C 6101 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6101 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6101 4  POLL I: Yielding to other threads
    0x0000466C 6101 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 302 ms
    0x0000466C 6101 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6101 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6101 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6103 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6104 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6104 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6104 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6104 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 302 ms
    0x0000466C 6104 4  POLL I: TimeToSleep() found shorter sleep time of 302 ms from class DevicePollFrequencyManager
    0x0000466C 6104 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6104 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6104 4  POLL I: Yielding to other threads
    0x0000466C 6104 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 299 ms
    0x0000466C 6104 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6104 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6104 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6106 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6106 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6106 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6106 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6106 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 299 ms
    0x0000466C 6106 4  POLL I: TimeToSleep() found shorter sleep time of 299 ms from class DevicePollFrequencyManager
    0x0000466C 6106 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6106 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6106 4  POLL I: Yielding to other threads
    0x0000466C 6106 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 297 ms
    0x0000466C 6106 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6106 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6106 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6108 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6108 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6108 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6108 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6108 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 297 ms
    0x0000466C 6108 4  POLL I: TimeToSleep() found shorter sleep time of 297 ms from class DevicePollFrequencyManager
    0x0000466C 6108 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6109 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6109 4  POLL I: Yielding to other threads
    0x0000466C 6109 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 294 ms
    0x0000466C 6109 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6109 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6109 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6111 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6111 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6111 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6111 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6111 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 294 ms
    0x0000466C 6111 4  POLL I: TimeToSleep() found shorter sleep time of 294 ms from class DevicePollFrequencyManager
    0x0000466C 6111 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6111 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6111 4  POLL I: Yielding to other threads
    0x0000466C 6111 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 292 ms
    0x0000466C 6111 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6111 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6111 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6113 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6113 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6113 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6113 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6113 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 292 ms
    0x0000466C 6113 4  POLL I: TimeToSleep() found shorter sleep time of 292 ms from class DevicePollFrequencyManager
    0x0000466C 6113 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6113 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6113 4  POLL I: Yielding to other threads
    0x0000466C 6113 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 290 ms
    0x0000466C 6113 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6113 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6113 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6116 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6116 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6116 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6116 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6116 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 290 ms
    0x0000466C 6116 4  POLL I: TimeToSleep() found shorter sleep time of 290 ms from class DevicePollFrequencyManager
    0x0000466C 6116 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6116 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6116 4  POLL I: Yielding to other threads
    0x0000466C 6116 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 287 ms
    0x0000466C 6116 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6116 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6116 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6117 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6117 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6117 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6117 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6117 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 287 ms
    0x0000466C 6117 4  POLL I: TimeToSleep() found shorter sleep time of 287 ms from class DevicePollFrequencyManager
    0x0000466C 6117 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6117 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6117 4  POLL I: Yielding to other threads
    0x0000466C 6118 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 284 ms
    0x0000466C 6118 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6118 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6118 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6120 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6120 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6120 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6120 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6120 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 284 ms
    0x0000466C 6120 4  POLL I: TimeToSleep() found shorter sleep time of 284 ms from class DevicePollFrequencyManager
    0x0000466C 6120 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6120 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6120 4  POLL I: Yielding to other threads
    0x0000466C 6120 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 282 ms
    0x0000466C 6120 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6120 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6120 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6123 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6123 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6123 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6123 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6123 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 282 ms
    0x0000466C 6123 4  POLL I: TimeToSleep() found shorter sleep time of 282 ms from class DevicePollFrequencyManager
    0x0000466C 6123 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6123 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6123 4  POLL I: Yielding to other threads
    0x0000466C 6123 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 279 ms
    0x0000466C 6123 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6123 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6123 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6125 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6125 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6125 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6125 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6125 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 279 ms
    0x0000466C 6125 4  POLL I: TimeToSleep() found shorter sleep time of 279 ms from class DevicePollFrequencyManager
    0x0000466C 6125 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6125 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6125 4  POLL I: Yielding to other threads
    0x0000466C 6125 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 277 ms
    0x0000466C 6125 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6125 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6125 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6128 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6128 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6128 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6128 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6128 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 277 ms
    0x0000466C 6128 4  POLL I: TimeToSleep() found shorter sleep time of 277 ms from class DevicePollFrequencyManager
    0x0000466C 6128 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6128 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6128 4  POLL I: Yielding to other threads
    0x0000466C 6128 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 274 ms
    0x0000466C 6128 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6128 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6128 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6130 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6130 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6130 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6130 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6130 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 274 ms
    0x0000466C 6130 4  POLL I: TimeToSleep() found shorter sleep time of 274 ms from class DevicePollFrequencyManager
    0x0000466C 6130 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6130 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6130 4  POLL I: Yielding to other threads
    0x0000466C 6130 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 272 ms
    0x0000466C 6130 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6130 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6130 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6133 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6133 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6133 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6133 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6133 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 272 ms
    0x0000466C 6133 4  POLL I: TimeToSleep() found shorter sleep time of 272 ms from class DevicePollFrequencyManager
    0x0000466C 6133 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6133 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6133 4  POLL I: Yielding to other threads
    0x0000466C 6133 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 269 ms
    0x0000466C 6133 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6133 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6133 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6135 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6135 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6135 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6135 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6135 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 269 ms
    0x0000466C 6135 4  POLL I: TimeToSleep() found shorter sleep time of 269 ms from class DevicePollFrequencyManager
    0x0000466C 6135 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6135 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6135 4  POLL I: Yielding to other threads
    0x0000466C 6135 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 267 ms
    0x0000466C 6135 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6135 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6135 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6138 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6138 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6138 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6138 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6138 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 267 ms
    0x0000466C 6138 4  POLL I: TimeToSleep() found shorter sleep time of 267 ms from class DevicePollFrequencyManager
    0x0000466C 6138 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6138 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6138 4  POLL I: Yielding to other threads
    0x0000466C 6138 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 264 ms
    0x0000466C 6138 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6138 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6138 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6140 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6140 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6140 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6140 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6140 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 264 ms
    0x0000466C 6140 4  POLL I: TimeToSleep() found shorter sleep time of 264 ms from class DevicePollFrequencyManager
    0x0000466C 6140 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6140 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6140 4  POLL I: Yielding to other threads
    0x0000466C 6140 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 262 ms
    0x0000466C 6140 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6140 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6140 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6143 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6143 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6143 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6143 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6143 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 262 ms
    0x0000466C 6143 4  POLL I: TimeToSleep() found shorter sleep time of 262 ms from class DevicePollFrequencyManager
    0x0000466C 6143 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6143 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6143 4  POLL I: Yielding to other threads
    0x0000466C 6143 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 259 ms
    0x0000466C 6143 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6143 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6143 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6145 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6145 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6145 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6145 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6145 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 259 ms
    0x0000466C 6145 4  POLL I: TimeToSleep() found shorter sleep time of 259 ms from class DevicePollFrequencyManager
    0x0000466C 6145 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6145 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6145 4  POLL I: Yielding to other threads
    0x0000466C 6146 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 257 ms
    0x0000466C 6146 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6146 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6146 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6149 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6149 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6149 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6149 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6149 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 257 ms
    0x0000466C 6149 4  POLL I: TimeToSleep() found shorter sleep time of 257 ms from class DevicePollFrequencyManager
    0x0000466C 6149 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6149 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6149 4  POLL I: Yielding to other threads
    0x0000466C 6149 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 253 ms
    0x0000466C 6149 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6149 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6149 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6152 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6152 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6152 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6152 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6152 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 253 ms
    0x0000466C 6152 4  POLL I: TimeToSleep() found shorter sleep time of 253 ms from class DevicePollFrequencyManager
    0x0000466C 6152 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6152 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6152 4  POLL I: Yielding to other threads
    0x0000466C 6152 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 250 ms
    0x0000466C 6152 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6152 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6152 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6154 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6154 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6154 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6154 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6154 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 250 ms
    0x0000466C 6154 4  POLL I: TimeToSleep() found shorter sleep time of 250 ms from class DevicePollFrequencyManager
    0x0000466C 6154 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6154 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6154 4  POLL I: Yielding to other threads
    0x0000466C 6154 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 248 ms
    0x0000466C 6154 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6154 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6154 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6157 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6157 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6157 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6157 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6157 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 248 ms
    0x0000466C 6157 4  POLL I: TimeToSleep() found shorter sleep time of 248 ms from class DevicePollFrequencyManager
    0x0000466C 6157 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6157 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6157 4  POLL I: Yielding to other threads
    0x0000466C 6157 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 245 ms
    0x0000466C 6157 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6157 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6157 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6159 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6159 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6159 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6159 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6159 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 245 ms
    0x0000466C 6159 4  POLL I: TimeToSleep() found shorter sleep time of 245 ms from class DevicePollFrequencyManager
    0x0000466C 6159 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6159 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6159 4  POLL I: Yielding to other threads
    0x0000466C 6159 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 243 ms
    0x0000466C 6159 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6159 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6159 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6162 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6162 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6162 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6162 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6162 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 243 ms
    0x0000466C 6162 4  POLL I: TimeToSleep() found shorter sleep time of 243 ms from class DevicePollFrequencyManager
    0x0000466C 6162 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6162 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6162 4  POLL I: Yielding to other threads
    0x0000466C 6162 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 240 ms
    0x0000466C 6162 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6162 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6162 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6164 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6164 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6164 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6164 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6164 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 240 ms
    0x0000466C 6164 4  POLL I: TimeToSleep() found shorter sleep time of 240 ms from class DevicePollFrequencyManager
    0x0000466C 6164 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6164 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6164 4  POLL I: Yielding to other threads
    0x0000466C 6164 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 238 ms
    0x0000466C 6164 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6164 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6164 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6166 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6166 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6167 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6167 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6167 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 238 ms
    0x0000466C 6167 4  POLL I: TimeToSleep() found shorter sleep time of 238 ms from class DevicePollFrequencyManager
    0x0000466C 6167 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6167 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6167 4  POLL I: Yielding to other threads
    0x0000466C 6167 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 235 ms
    0x0000466C 6167 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6167 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6167 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6169 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6169 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6169 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6169 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6169 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 235 ms
    0x0000466C 6169 4  POLL I: TimeToSleep() found shorter sleep time of 235 ms from class DevicePollFrequencyManager
    0x0000466C 6169 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6169 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6169 4  POLL I: Yielding to other threads
    0x0000466C 6169 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 233 ms
    0x0000466C 6169 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6169 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6169 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6171 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6171 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6171 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6171 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6171 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 233 ms
    0x0000466C 6172 4  POLL I: TimeToSleep() found shorter sleep time of 233 ms from class DevicePollFrequencyManager
    0x0000466C 6172 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6172 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6172 4  POLL I: Yielding to other threads
    0x0000466C 6172 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 230 ms
    0x0000466C 6172 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6172 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6172 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6174 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6174 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6174 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6174 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6174 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 230 ms
    0x0000466C 6174 4  POLL I: TimeToSleep() found shorter sleep time of 230 ms from class DevicePollFrequencyManager
    0x0000466C 6174 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6174 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6174 4  POLL I: Yielding to other threads
    0x0000466C 6174 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 228 ms
    0x0000466C 6174 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6174 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6174 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6176 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6177 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6177 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6177 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6177 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 228 ms
    0x0000466C 6177 4  POLL I: TimeToSleep() found shorter sleep time of 228 ms from class DevicePollFrequencyManager
    0x0000466C 6177 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6177 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6177 4  POLL I: Yielding to other threads
    0x0000466C 6177 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 225 ms
    0x0000466C 6177 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6177 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6177 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6179 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6179 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6179 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6179 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6179 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 225 ms
    0x0000466C 6179 4  POLL I: TimeToSleep() found shorter sleep time of 225 ms from class DevicePollFrequencyManager
    0x0000466C 6179 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6179 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6179 4  POLL I: Yielding to other threads
    0x0000466C 6179 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 223 ms
    0x0000466C 6179 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6179 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6179 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6181 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6181 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6181 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6181 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6181 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 223 ms
    0x0000466C 6181 4  POLL I: TimeToSleep() found shorter sleep time of 223 ms from class DevicePollFrequencyManager
    0x0000466C 6181 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6181 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6181 4  POLL I: Yielding to other threads
    0x0000466C 6181 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 221 ms
    0x0000466C 6181 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6181 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6182 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6184 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6184 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6184 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6184 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6184 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 221 ms
    0x0000466C 6184 4  POLL I: TimeToSleep() found shorter sleep time of 221 ms from class DevicePollFrequencyManager
    0x0000466C 6184 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6184 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6184 4  POLL I: Yielding to other threads
    0x0000466C 6184 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 218 ms
    0x0000466C 6184 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6184 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6184 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6186 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6186 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6186 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6186 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6186 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 218 ms
    0x0000466C 6186 4  POLL I: TimeToSleep() found shorter sleep time of 218 ms from class DevicePollFrequencyManager
    0x0000466C 6186 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6186 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6186 4  POLL I: Yielding to other threads
    0x0000466C 6186 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 216 ms
    0x0000466C 6186 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6186 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6186 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6189 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6189 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6189 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6189 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6189 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 216 ms
    0x0000466C 6189 4  POLL I: TimeToSleep() found shorter sleep time of 216 ms from class DevicePollFrequencyManager
    0x0000466C 6189 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6189 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6189 4  POLL I: Yielding to other threads
    0x0000466C 6189 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 213 ms
    0x0000466C 6189 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6189 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6189 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6191 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6191 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6191 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6191 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6191 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 213 ms
    0x0000466C 6191 4  POLL I: TimeToSleep() found shorter sleep time of 213 ms from class DevicePollFrequencyManager
    0x0000466C 6191 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6191 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6191 4  POLL I: Yielding to other threads
    0x0000466C 6191 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 211 ms
    0x0000466C 6191 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6191 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6191 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6194 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6194 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6194 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6194 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6194 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 211 ms
    0x0000466C 6194 4  POLL I: TimeToSleep() found shorter sleep time of 211 ms from class DevicePollFrequencyManager
    0x0000466C 6194 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6194 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6194 4  POLL I: Yielding to other threads
    0x0000466C 6194 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 208 ms
    0x0000466C 6194 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6194 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6194 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6196 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6196 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6196 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6196 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6196 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 208 ms
    0x0000466C 6196 4  POLL I: TimeToSleep() found shorter sleep time of 208 ms from class DevicePollFrequencyManager
    0x0000466C 6196 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6196 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6196 4  POLL I: Yielding to other threads
    0x0000466C 6196 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 206 ms
    0x0000466C 6196 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6196 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6196 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6199 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6199 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6199 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6199 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6199 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 206 ms
    0x0000466C 6199 4  POLL I: TimeToSleep() found shorter sleep time of 206 ms from class DevicePollFrequencyManager
    0x0000466C 6199 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6199 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6199 4  POLL I: Yielding to other threads
    0x0000466C 6199 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 203 ms
    0x0000466C 6199 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6199 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6199 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6201 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6201 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6201 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6201 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6201 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 203 ms
    0x0000466C 6201 4  POLL I: TimeToSleep() found shorter sleep time of 203 ms from class DevicePollFrequencyManager
    0x0000466C 6201 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6201 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6201 4  POLL I: Yielding to other threads
    0x0000466C 6201 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 201 ms
    0x0000466C 6201 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6202 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6202 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6204 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6204 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6204 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6204 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6204 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 201 ms
    0x0000466C 6204 4  POLL I: TimeToSleep() found shorter sleep time of 201 ms from class DevicePollFrequencyManager
    0x0000466C 6204 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6204 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6204 4  POLL I: Yielding to other threads
    0x0000466C 6204 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 198 ms
    0x0000466C 6204 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6204 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6204 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6206 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6206 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6206 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6206 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6206 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 198 ms
    0x0000466C 6206 4  POLL I: TimeToSleep() found shorter sleep time of 198 ms from class DevicePollFrequencyManager
    0x0000466C 6206 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6206 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6206 4  POLL I: Yielding to other threads
    0x0000466C 6206 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 196 ms
    0x0000466C 6206 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6206 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6206 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6209 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6209 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6209 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6209 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6209 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 196 ms
    0x0000466C 6209 4  POLL I: TimeToSleep() found shorter sleep time of 196 ms from class DevicePollFrequencyManager
    0x0000466C 6209 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6209 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6209 4  POLL I: Yielding to other threads
    0x0000466C 6209 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 193 ms
    0x0000466C 6209 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6209 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6209 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6211 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6211 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6211 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6211 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6211 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 193 ms
    0x0000466C 6211 4  POLL I: TimeToSleep() found shorter sleep time of 193 ms from class DevicePollFrequencyManager
    0x0000466C 6211 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6211 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6211 4  POLL I: Yielding to other threads
    0x0000466C 6211 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 191 ms
    0x0000466C 6211 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6211 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6211 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6214 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6214 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6214 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6214 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6214 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 191 ms
    0x0000466C 6214 4  POLL I: TimeToSleep() found shorter sleep time of 191 ms from class DevicePollFrequencyManager
    0x0000466C 6214 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6214 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6214 4  POLL I: Yielding to other threads
    0x0000466C 6214 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 188 ms
    0x0000466C 6214 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6214 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6214 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6216 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6216 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6216 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6216 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6216 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 188 ms
    0x0000466C 6216 4  POLL I: TimeToSleep() found shorter sleep time of 188 ms from class DevicePollFrequencyManager
    0x0000466C 6216 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6216 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6216 4  POLL I: Yielding to other threads
    0x0000466C 6216 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 186 ms
    0x0000466C 6216 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6216 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6216 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6218 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6219 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6219 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6219 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6219 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 186 ms
    0x0000466C 6219 4  POLL I: TimeToSleep() found shorter sleep time of 186 ms from class DevicePollFrequencyManager
    0x0000466C 6219 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6219 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6219 4  POLL I: Yielding to other threads
    0x0000466C 6219 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 183 ms
    0x0000466C 6219 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6219 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6219 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6221 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6221 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6221 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6221 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6221 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 183 ms
    0x0000466C 6221 4  POLL I: TimeToSleep() found shorter sleep time of 183 ms from class DevicePollFrequencyManager
    0x0000466C 6221 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6221 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6221 4  POLL I: Yielding to other threads
    0x0000466C 6221 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 181 ms
    0x0000466C 6221 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6221 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6221 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6223 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6224 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6224 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6224 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6224 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 181 ms
    0x0000466C 6224 4  POLL I: TimeToSleep() found shorter sleep time of 181 ms from class DevicePollFrequencyManager
    0x0000466C 6224 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6224 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6224 4  POLL I: Yielding to other threads
    0x0000466C 6224 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 178 ms
    0x0000466C 6224 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6224 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x00004768 6224 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C740 )
    0x0000466C 6224 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 6224 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C740 = false ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( 00000016F231C850 )
    0x00004768 6224 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->HasDebugStateToRestore( *00000016F231C850 = false ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C718 )
    0x00004768 6224 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C718 = 000001836FD18740 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C550 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07B00, 00000016F231C578 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07B00, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E00, 00000016F231C578 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07E00, *00000016F231C578 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231C828 )
    0x00004768 6224 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231C828 = 000001836FD18740 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231C660 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07D80, 00000016F231C688 )
    0x00004768 6224 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 000001836FF07D80, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07BC0, 00000016F231C688 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 000001836FF07BC0, *00000016F231C688 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6224 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6224 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C718 )
    0x00004768 6225 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C718 = 000001836FD18800 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C550 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C550 = 0x00000000 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, 00000016F231C578 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07BC0, 00000016F231C578 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07BC0, *00000016F231C578 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C6F0 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C6F0 = true ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231C828 )
    0x00004768 6225 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231C828 = 000001836FD18800 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231C660 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231C660 = 0x00000000 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, 00000016F231C688 )
    0x00004768 6225 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 000001836FF07BC0, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07CA0, 00000016F231C688 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 000001836FF07CA0, *00000016F231C688 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( 00000016F231C800 )
    0x00004768 6225 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->DisableStatus( *00000016F231C800 = true ) = 0x00000000
    0x00004768 6225 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C750 )
    0x0000466C 6226 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6226 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6226 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x0000466C 6226 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6226 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 178 ms
    0x0000466C 6226 4  POLL I: TimeToSleep() found shorter sleep time of 178 ms from class DevicePollFrequencyManager
    0x0000466C 6226 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6226 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6226 4  POLL I: Yielding to other threads for 10 ms
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C750 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C750 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C750 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231C860 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231C860 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x00004768 6226 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231C860 )
    0x00004768 6226 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231C860 = false ) = 0x00000000
    0x0000466C 6252 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 150 ms
    0x0000466C 6252 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6252 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6252 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6256 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6256 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6256 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6256 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6256 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 150 ms
    0x0000466C 6256 4  POLL I: TimeToSleep() found shorter sleep time of 150 ms from class DevicePollFrequencyManager
    0x0000466C 6256 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6256 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6256 4  POLL I: Yielding to other threads
    0x0000466C 6256 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 146 ms
    0x0000466C 6256 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6256 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6256 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6258 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6258 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6258 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6258 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6258 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 146 ms
    0x0000466C 6258 4  POLL I: TimeToSleep() found shorter sleep time of 146 ms from class DevicePollFrequencyManager
    0x0000466C 6258 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6258 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6258 4  POLL I: Yielding to other threads
    0x0000466C 6258 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 144 ms
    0x0000466C 6258 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6258 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6258 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6261 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6261 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6261 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6261 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6261 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 144 ms
    0x0000466C 6261 4  POLL I: TimeToSleep() found shorter sleep time of 144 ms from class DevicePollFrequencyManager
    0x0000466C 6261 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6261 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6261 4  POLL I: Yielding to other threads
    0x0000466C 6261 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 141 ms
    0x0000466C 6261 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6261 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6261 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6263 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6263 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6263 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6263 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6263 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 141 ms
    0x0000466C 6263 4  POLL I: TimeToSleep() found shorter sleep time of 141 ms from class DevicePollFrequencyManager
    0x0000466C 6263 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6263 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6263 4  POLL I: Yielding to other threads
    0x0000466C 6263 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 139 ms
    0x0000466C 6263 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6263 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6263 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6266 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6266 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6266 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6266 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6266 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 139 ms
    0x0000466C 6266 4  POLL I: TimeToSleep() found shorter sleep time of 139 ms from class DevicePollFrequencyManager
    0x0000466C 6266 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6266 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6266 4  POLL I: Yielding to other threads
    0x0000466C 6266 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 136 ms
    0x0000466C 6266 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6266 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6266 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6268 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6268 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6268 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6268 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6268 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 136 ms
    0x0000466C 6268 4  POLL I: TimeToSleep() found shorter sleep time of 136 ms from class DevicePollFrequencyManager
    0x0000466C 6268 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6268 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6268 4  POLL I: Yielding to other threads
    0x0000466C 6268 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 134 ms
    0x0000466C 6268 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6268 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6268 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6271 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6271 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6271 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6271 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6271 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 134 ms
    0x0000466C 6271 4  POLL I: TimeToSleep() found shorter sleep time of 134 ms from class DevicePollFrequencyManager
    0x0000466C 6271 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6271 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6271 4  POLL I: Yielding to other threads
    0x0000466C 6271 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 131 ms
    0x0000466C 6271 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6271 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6271 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6273 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6273 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6273 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6273 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6273 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 131 ms
    0x0000466C 6273 4  POLL I: TimeToSleep() found shorter sleep time of 131 ms from class DevicePollFrequencyManager
    0x0000466C 6273 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6273 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6273 4  POLL I: Yielding to other threads
    0x0000466C 6273 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 129 ms
    0x0000466C 6273 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6273 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6273 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6276 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6276 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6276 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6276 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6276 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 129 ms
    0x0000466C 6276 4  POLL I: TimeToSleep() found shorter sleep time of 129 ms from class DevicePollFrequencyManager
    0x0000466C 6276 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6276 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6276 4  POLL I: Yielding to other threads
    0x0000466C 6276 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 126 ms
    0x0000466C 6276 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6276 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6276 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6278 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6278 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6278 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6278 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6278 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 126 ms
    0x0000466C 6278 4  POLL I: TimeToSleep() found shorter sleep time of 126 ms from class DevicePollFrequencyManager
    0x0000466C 6278 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6278 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6278 4  POLL I: Yielding to other threads
    0x0000466C 6278 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 124 ms
    0x0000466C 6279 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6279 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6279 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6281 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6281 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6281 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6281 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6281 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 124 ms
    0x0000466C 6281 4  POLL I: TimeToSleep() found shorter sleep time of 124 ms from class DevicePollFrequencyManager
    0x0000466C 6281 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6281 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6281 4  POLL I: Yielding to other threads
    0x0000466C 6281 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 121 ms
    0x0000466C 6281 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6281 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6281 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6283 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 1, 100, 202, 301, 400, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6283 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6283 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6283 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6283 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 121 ms
    0x0000466C 6283 4  POLL I: TimeToSleep() found shorter sleep time of 121 ms from class DevicePollFrequencyManager
    0x0000466C 6283 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6283 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6283 4  POLL I: Yielding to other threads
    0x0000466C 6284 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 118 ms
    0x0000466C 6284 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6284 3 CORTEX_M4_0 POLL C: Polling with state STATE_RUNNING and status EVENT_DSP_RUN
    0x0000466C 6284 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6285 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE308 = { 0, 101, 202, 301, 401, 501, 0, 0 } ) = 0x00000000
    0x0000466C 6285 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_CABLE_BREAK
    0x0000466C 6285 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000000, *0x00000016F4EFDA90 = 0x00000000, *0x00000016F4EFDAA0 = 0x00000000, *0x00000016F4EFDAB0 = 0x00000000, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000000, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6285 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000010, *0x00000016F4EFDA90 = 0xFFFFFB6E, *0x00000016F4EFDAA0 = 0x00000020, *0x00000016F4EFDAB0 = 0x00000002, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000008, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "(Error -1170 @ 0x0)
    Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK).
    (Emulation package 9.2.0.00002)
    ", 0x00000400 ) = 0x00000001
    0x0000466C 6285 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000000, *0x00000016F4EFDA90 = 0x00000000, *0x00000016F4EFDAA0 = 0x00000000, *0x00000016F4EFDAB0 = 0x00000000, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000000, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6285 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000000, *0x00000016F4EFDA90 = 0x00000000, *0x00000016F4EFDAA0 = 0x00000000, *0x00000016F4EFDAB0 = 0x00000002, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000008, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6285 3  COM_DBG_IF C: class dsDebugger::OnError()
    0x0000466C 6285 3  XPCOM C: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     )
    0x0000466C 6286 3  XPCOM R: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     ) = 0x00000000
    0x0000466C 6286 3  COM_DBG_IF R: class dsDebugger::OnError()
    0x0000466C 6286 3 CORTEX_M4_0 POLL C: Firing DSP_TASK_ERROR_MESSAGE_ERROR to all DSP_USER's
    0x0000466C 6286 3  COM_DBG_IF C: class DSP_CO_USER::OnError()
    0x0000466C 6286 3  XPCOM C: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     )
    0x0000466C 6286 3  XPCOM R: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: JTAG Communication Error: (Error -1170 @ 0x0) Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 9.2.0.00002) 
     ) = 0x00000000
    0x0000466C 6286 3  COM_DBG_IF R: class DSP_CO_USER::OnError()
    0x0000466C 6286 3 CORTEX_M4_0 POLL C: Firing of DSP_TASK_ERROR_MESSAGE_ERROR complete
    0x0000466C 6287 3 CS_DAP_0 STATE I: Connection state changed to 3
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing DSP_DISCONNECTING to all DSP_USER's
    0x0000466C 6287 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6287 3  XPCOM C: ( (dsIBooleanEventCallback*)000001836D0AD510 )->onEvent( true )
    0x0000466C 6287 3  XPCOM R: ( (dsIBooleanEventCallback*)000001836D0AD510 )->onEvent( true ) = 0x00000000
    0x0000466C 6287 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6287 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D230310 )->onEvent()
    0x0000466C 6287 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D230310 )->onEvent() = 0x00000000
    0x0000466C 6287 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing of DSP_DISCONNECTING complete
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing DSP_REMOVE_DEBUG_STATE to all DSP_USER's
    0x0000466C 6287 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6287 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6287 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6287 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6287 3 CS_DAP_0 POLL C: Firing of DSP_REMOVE_DEBUG_STATE complete
    0x0000466C 6287 3 CORTEX_M4_0 STATE I: Connection state changed to 3
    0x0000466C 6287 3 CORTEX_M4_0 POLL C: Firing DSP_DISCONNECTING to all DSP_USER's
    0x0000466C 6287 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::ePreDisconnect )
    0x0000466C 6287 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6287 3  XPCOM C: ( (dsIBooleanEventCallback*)000001836D0AC610 )->onEvent( true )
    0x0000466C 6287 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( 00000016F4EFC4C0 )
    0x0000466C 6287 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( *00000016F4EFC4C0 = 0x00000003 ) = 0x00000000
    0x0000466C 6287 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFC4E0, 00000016F4EFC4F8, 00000016F4EFC510, 00000016F4EFC528 )
    0x0000466C 6287 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFC4E0 = true, *00000016F4EFC4F8 = false, *00000016F4EFC510 = 0x00000005, *00000016F4EFC528 = 0x00000001 ) = 0x00000000
    0x0000466C 6288 3  XPCOM R: ( (dsIBooleanEventCallback*)000001836D0AC610 )->onEvent( true ) = 0x00000000
    0x0000466C 6288 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnecting()
    0x0000466C 6288 3  COM_DBG_IF C: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6288 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent()
    0x0000466C 6288 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AC890 )->onEvent() = 0x00000000
    0x0000466C 6288 3  COM_DBG_IF R: class DSP_CO_USER::OnAllowedUserAccessesChanged()
    0x0000466C 6288 3 CORTEX_M4_0 POLL C: Firing of DSP_DISCONNECTING complete
    0x0000466C 6288 3 CORTEX_M4_0 POLL C: Firing DSP_REMOVE_DEBUG_STATE to all DSP_USER's
    0x0000466C 6288 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6288 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateStarted()
    0x0000466C 6288 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6288 3 CS_DAP_0 TA C: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E0002008, 0x00000004, 0 )
    0x0000466C 6288 3 CS_DAP_0 GTI C: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002008, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } )
    0x00004768 6289 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 6289 3 CS_DAP_0 GTI R: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002008, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } ) = 0x00000000
    0x0000466C 6289 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000000, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000000, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6289 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000002, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000008, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6289 3 CS_DAP_0 TA R: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E0002008, 0x00000004, 0 ) = 0
    0x0000466C 6289 3  COM_DBG_IF C: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6290 3  XPCOM C: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D187E40 )
    0x0000466C 6290 3  XPCOM C: ( (nsISupports*)000001836D187E50 )->queryInterface( 000001836FD2EE00, 00000016F4EFC0A8 )
    0x0000466C 6290 3  XPCOM R: ( (nsISupports*)000001836D187E50 )->queryInterface( 000001836FD2EE00, *00000016F4EFC0A8 = 000001836D187E40 ) = 0x00000000
    0x0000466C 6290 3  XPCOM C: ( (dsIBreakpoint*)000001836D187E40 )->IsSystem( 00000016F4EFC100 )
    0x0000466C 6290 3  XPCOM R: ( (dsIBreakpoint*)000001836D187E40 )->IsSystem( *00000016F4EFC100 = true ) = 0x00000000
    0x0000466C 6290 3  XPCOM R: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D187E40 ) = 0x00000000
    0x0000466C 6290 3  COM_DBG_IF R: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6290 3 CS_DAP_0 TA C: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E000200C, 0x00000004, 0 )
    0x0000466C 6290 3 CS_DAP_0 GTI C: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E000200C, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } )
    0x0000466C 6291 3 CS_DAP_0 GTI R: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E000200C, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000000, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } ) = 0x00000000
    0x0000466C 6291 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000000, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000000, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6292 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000002, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000008, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6292 3 CS_DAP_0 TA R: MemoryWrite( *00000016F4EFCEB0 = 0, 0x00000000E000200C, 0x00000004, 0 ) = 0
    0x0000466C 6292 3 CS_DAP_0 TA C: MemoryWrite( *00000016F4EFCEB0 = 2, 0x00000000E0002000, 0x00000004, 0 )
    0x0000466C 6292 3 CS_DAP_0 GTI C: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002000, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000002, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } )
    0x0000466C 6293 3 CS_DAP_0 GTI R: GTI_WRITEMEM_WITH_STAT_64( 0x000001836D0B3160, 0x00000000E0002000, 0x00000000, 0x00000004, 0x00000000, "RAM", 0x00000000, 0x00000000, *0x000001836FD59430 = 0x00000002, 0xFFFFFFFF, *0x000001836FD79430 = { 0, 0x00000000 } ) = 0x00000000
    0x0000466C 6293 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000000, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000000, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6293 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFB718 = 0x00000000, *0x00000016F4EFB710 = 0x00000000, *0x00000016F4EFB720 = 0x00000000, *0x00000016F4EFB730 = 0x00000002, *0x00000016F4EFB734 = 0x00000000, *0x00000016F4EFB72C = 0x00000008, *0x00000016F4EFB728 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6293 3 CS_DAP_0 TA R: MemoryWrite( *00000016F4EFCEB0 = 2, 0x00000000E0002000, 0x00000004, 0 ) = 0
    0x0000466C 6293 3  COM_DBG_IF C: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6293 3  XPCOM C: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D188B40 )
    0x0000466C 6293 3  XPCOM C: ( (nsISupports*)000001836D188B50 )->queryInterface( 000001836FD2FDC0, 00000016F4EFC0A8 )
    0x0000466C 6293 3  XPCOM R: ( (nsISupports*)000001836D188B50 )->queryInterface( 000001836FD2FDC0, *00000016F4EFC0A8 = 000001836D188B40 ) = 0x00000000
    0x0000466C 6293 3  XPCOM C: ( (dsIBreakpoint*)000001836D188B40 )->IsSystem( 00000016F4EFC100 )
    0x0000466C 6293 3  XPCOM R: ( (dsIBreakpoint*)000001836D188B40 )->IsSystem( *00000016F4EFC100 = true ) = 0x00000000
    0x0000466C 6293 3  XPCOM R: ( (dsIObjectEventCallback*)000001836CD1BA90 )->onEvent( 000001836D188B40 ) = 0x00000000
    0x0000466C 6293 3  COM_DBG_IF R: class CoBreakpointManager::OnBreakpointDisabled()
    0x0000466C 6293 3  COM_DBG_IF C: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6293 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D188DC0 )->onEvent()
    0x0000466C 6293 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D188DC0 )->onEvent() = 0x00000000
    0x0000466C 6293 3  COM_DBG_IF R: class DSP_CO_USER::OnRemoveDebugState()
    0x0000466C 6293 3 CORTEX_M4_0 POLL C: Firing of DSP_REMOVE_DEBUG_STATE complete
    0x0000466C 6293 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6293 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 6293 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6294 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6294 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6294 4  POLL I: Yielding to other threads
    0x0000466C 6294 3 CS_DAP_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_HALT
    0x0000466C 6294 3 CS_DAP_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836D0B3160 )
    0x0000466C 6294 3 CS_DAP_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836D0B3160 ) = 0x00000000
    0x0000466C 6294 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000000, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000000, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6294 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000002, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000008, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6294 3  PERF I: GTI_DISCONNECT starting...
    0x0000466C 6294 3 CS_DAP_0 GTI C: GTI_DISCONNECT( 0x000001836D0B3160 )
    0x00002D54 6294 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00004768 6294 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x0000466C 6294 3 CS_DAP_0 GTI R: GTI_DISCONNECT( 0x000001836D0B3160 ) = 0x00000000
    0x0000466C 6294 3  PERF I: GTI_DISCONNECT finished:  0.000694s wall, 0.000000s user + 0.000000s system = 0.000000s CPU (n/a%)
    
    0x0000466C 6295 3 CS_DAP_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000000, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000000, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6295 3 CS_DAP_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836D0B3160, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000002, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000008, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6295 3 CS_DAP_0 GTI C: GTI_STAT( 0x000001836D0B3160 )
    0x0000466C 6295 3 CS_DAP_0 GTI R: GTI_STAT( 0x000001836D0B3160 ) = 0x0000000B
    0x0000466C 6295 3 CS_DAP_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6295 3 CS_DAP_0 STATE I: Connection state changed to 2
    0x0000466C 6295 3 CS_DAP_0 POLL C: Firing DSP_DISCONNECTED to all DSP_USER's
    0x0000466C 6295 3 CS_DAP_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6295 3 CS_DAP_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6295 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6295 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AD490 )->onEvent()
    0x0000466C 6295 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A0FF8 )->connectionStatus( 00000016F4EFCBA0 )
    0x0000466C 6295 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A0FF8 )->connectionStatus( *00000016F4EFCBA0 = 0x00000002 ) = 0x00000000
    0x0000466C 6295 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AD490 )->onEvent() = 0x00000000
    0x0000466C 6295 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6295 3 CS_DAP_0 POLL C: Firing of DSP_DISCONNECTED complete
    0x0000466C 6295 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002D54 6295 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00004768 6295 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x0000466C 6295 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6295 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_DISCONNECT and status EVENT_DSP_RUN
    0x00002D54 6295 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x0000466C 6295 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x00004768 6296 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 0, 101, 202, 301, 401, 501, 0, 0 } ) = 0x00000000
    0x0000466C 6297 3 CORTEX_M4_0 GTI C: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836ADF17A0 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_DONE_REMOVING_DEBUG_STATE( 0x000001836ADF17A0 ) = 0x00000000
    0x0000466C 6297 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000000, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000000, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000010, *0x00000016F4EFDDE0 = 0xFFFFFB6E, *0x00000016F4EFDDF0 = 0x00000020, *0x00000016F4EFDE00 = 0x00000002, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000008, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "(Error -1170 @ 0x0)
    Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK).
    (Emulation package 9.2.0.00002)
    ", 0x00000400 ) = 0x00000001
    0x0000466C 6297 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000000, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000000, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6297 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDDE8 = 0x00000000, *0x00000016F4EFDDE0 = 0x00000000, *0x00000016F4EFDDF0 = 0x00000000, *0x00000016F4EFDE00 = 0x00000002, *0x00000016F4EFDE04 = 0x00000000, *0x00000016F4EFDDFC = 0x00000008, *0x00000016F4EFDDF8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6297 3  COM_DBG_IF C: class dsDebugger::OnError()
    0x0000466C 6297 3  XPCOM C: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     )
    0x0000466C 6298 3  XPCOM R: ( (dsIStringEventCallback*)000001836CE1F820 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     ) = 0x00000000
    0x0000466C 6298 3  COM_DBG_IF R: class dsDebugger::OnError()
    0x0000466C 6298 3 CORTEX_M4_0 POLL C: Firing DSP_TASK_ERROR_MESSAGE_ERROR to all DSP_USER's
    0x0000466C 6298 3  COM_DBG_IF C: class DSP_CO_USER::OnError()
    0x0000466C 6298 3  XPCOM C: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     )
    0x0000466C 6298 3  XPCOM R: ( (dsIStringEventCallback*)000001836D0ACC90 )->onEvent( CORTEX_M4_0: Failed to remove the debug state from the target before disconnecting.  There may still be breakpoint op-codes embedded in program memory.  It is recommended that you reset the emulator before you connect and reload your program before you continue debugging
     ) = 0x00000000
    0x0000466C 6298 3  COM_DBG_IF R: class DSP_CO_USER::OnError()
    0x0000466C 6298 3 CORTEX_M4_0 POLL C: Firing of DSP_TASK_ERROR_MESSAGE_ERROR complete
    0x0000466C 6298 3  PERF I: GTI_DISCONNECT starting...
    0x0000466C 6298 3 CORTEX_M4_0 GTI C: GTI_DISCONNECT( 0x000001836ADF17A0 )
    0x0000466C 6352 3 CORTEX_M4_0 GTI R: GTI_DISCONNECT( 0x000001836ADF17A0 ) = 0x00000000
    0x0000466C 6352 3  PERF I: GTI_DISCONNECT finished:  0.053343s wall, 0.031250s user + 0.000000s system = 0.031250s CPU (58.6%)
    
    0x0000466C 6352 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000000, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000000, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6352 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDEA8 = 0x00000000, *0x00000016F4EFDEA0 = 0x00000000, *0x00000016F4EFDEB0 = 0x00000000, *0x00000016F4EFDEC0 = 0x00000002, *0x00000016F4EFDEC4 = 0x00000000, *0x00000016F4EFDEBC = 0x00000008, *0x00000016F4EFDEB8 = 0x00000000, "", 0x00000040, "", 0x00000400 ) = 0x00000000
    0x0000466C 6352 3 CORTEX_M4_0 GTI C: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 0, 0, 0, 0, 0, 0, 0, 0 } )
    0x0000466C 6352 3 CORTEX_M4_0 GTI R: GTI_STAT_EX2( 0x000001836ADF17A0, *0x00000016F4EFE658 = { 1, 100, 202, 301, 401, 0, 0, 0 } ) = 0x00000000
    0x0000466C 6352 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_RUNNING
    0x0000466C 6352 3 CORTEX_M4_0 STATE I: Connection state changed to 2
    0x0000466C 6352 3 CORTEX_M4_0 POLL C: Firing DSP_DISCONNECTED to all DSP_USER's
    0x0000466C 6352 3 CORTEX_M4_0 TA C: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6352 3 CORTEX_M4_0 TA R: TargetAdapterEvent::OnTargetStateChange( Ti::Sds::Ctools::eDisconnected )
    0x0000466C 6352 3  COM_DBG_IF C: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6352 3  XPCOM C: ( (dsISimpleEventCallback*)000001836D0AD710 )->onEvent()
    0x0000466C 6352 3  XPCOM C: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( 00000016F4EFCB30 )
    0x0000466C 6352 3  XPCOM R: ( (dsIConnectDisconnect*)00000183702A15F8 )->connectionStatus( *00000016F4EFCB30 = 0x00000002 ) = 0x00000000
    0x0000466C 6352 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( 00000016F4EFCB40, 00000016F4EFCB58, 00000016F4EFCB70, 00000016F4EFCB88 )
    0x0000466C 6352 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->getExecutionState( *00000016F4EFCB40 = true, *00000016F4EFCB58 = false, *00000016F4EFCB70 = 0x00000005, *00000016F4EFCB88 = 0x00000001 ) = 0x00000000
    0x0000466C 6352 3  XPCOM R: ( (dsISimpleEventCallback*)000001836D0AD710 )->onEvent() = 0x00000000
    0x0000466C 6352 3  COM_DBG_IF R: class DSP_CO_USER::OnDisconnected()
    0x0000466C 6352 3 CORTEX_M4_0 POLL C: Firing of DSP_DISCONNECTED complete
    0x0000466C 6353 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004308 6353 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( 00000016F4FFF050 )
    0x00002034 6353 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F42FEC90 )
    0x00002D54 6353 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x00004768 6353 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x0000466C 6353 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6353 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6353 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6353 4  POLL I: Yielding to other threads
    0x00004308 6353 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( *00000016F4FFF050 = false ) = 0x00000000
    0x00002D54 6353 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00004768 6353 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00002034 6353 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F42FEC90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6353 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x00002034 6353 3  XPCOM C: ( (dsIMemoryAccess*)00000183702A15E8 )->createMemory2( 000001836AD533B0, 00000016F42FEC28, 00000016F42FEC40 )
    0x0000466C 6353 3 CS_DAP_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x0000466C 6353 3 CS_DAP_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6353 3 CS_DAP_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6353 4 CS_DAP_0 POLL I: Yielding to other threads
    0x00002D54 6353 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002034 6353 3  XPCOM R: ( (dsIMemoryAccess*)00000183702A15E8 )->createMemory2( 000001836AD533B0, *00000016F42FEC28 = 0000000000000000, *00000016F42FEC40 = 000001836AD8D5A0 ) = 0x00000000
    0x0000466C 6354 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x00004768 6354 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00002034 6354 3  XPCOM C: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x0006, 0x0000000000000000, 00000016F42FEC30 )
    0x00002D54 6354 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x0000466C 6354 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_NONE added to polling loop by class DebuggerListeners
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6354 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6354 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00002034 6354 3  XPCOM R: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x0006, 0x0000000000000000, *00000016F42FEC30 = 000001836AD8BF60 ) = 0x00000000
    0x00004768 6354 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00002D54 6354 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x0000466C 6354 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6354 4 CS_DAP_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6354 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6354 4  POLL I: Yielding to other threads
    0x0000466C 6354 3 CS_DAP_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6354 3 CS_DAP_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x0000466C 6354 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6354 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6354 3 CS_DAP_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6354 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 6354 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_HANDLE_NULL_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6354 3 CORTEX_M4_0 POLL C: Firing DSP_REQ_EVENT to class DebuggerListeners
    0x0000466C 6354 3  COM_DBG_IF C: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6355 3  COM_DBG_IF R: class CoBreakpointManager::OnBatchUpdateFinished()
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6355 3 CORTEX_M4_0 POLL R: Poll() returning
    0x00004768 6355 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00002034 6355 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getBitLength( 00000016F42FEC30 )
    0x0000466C 6355 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 6355 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00004768 6355 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00002034 6355 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getBitLength( *00000016F42FEC30 = 0x00000020 ) = 0x00000000
    0x00004768 6355 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6355 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getPage( 00000016F42FEC30 )
    0x00002034 6355 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getPage( *00000016F42FEC30 = 0x00000079 ) = 0x00000000
    0x00004768 6355 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6355 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsITargetData*)000001836AD8BF60 )->bestMatchedUDataType( 0x00000020, 0x0079, 00000016F42FEC50 )
    0x00002034 6355 3  XPCOM R: ( (dsITargetData*)000001836AD8BF60 )->bestMatchedUDataType( 0x00000020, 0x0079, *00000016F42FEC50 = 0x000B ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x000B, 0x0000000000000000, 00000016F42FEC30 )
    0x00002034 6355 3  XPCOM R: ( (dsIMemoryAccess*)00000183702A15E8 )->createTargetData64( 0x000B, 0x0000000000000000, *00000016F42FEC30 = 000001836AD8CAE0 ) = 0x00000000
    0x00002034 6355 3  XPCOM C: ( (dsIRegisterAccess*)00000183702A15D8 )->requestRegisterRead( 000001836AD8D5A0, true, 000001836F9702C0, 00000016F42FE9D8 )
    0x00002034 6355 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_READ_MEM added to polling loop by class DSP_CO_USER
    0x00002034 6355 3  XPCOM R: ( (dsIRegisterAccess*)00000183702A15D8 )->requestRegisterRead( 000001836AD8D5A0, true, 000001836F9702C0, *00000016F42FE9D8 = 000001836AD53570 ) = 0x00000000
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x0000466C 6355 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6355 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 499 ms
    0x0000466C 6355 4  POLL I: TimeToSleep() found shorter sleep time of 499 ms from class DevicePollFrequencyManager
    0x0000466C 6355 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target servicing a request or event
    0x0000466C 6355 4  POLL I: TimeToSleep() found shorter sleep time of 0 ms from class DevicePollFrequencyManager
    0x0000466C 6355 4  POLL I: Yielding to other threads
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Polling with state CPU_ST_ABORT_REQUEST and status EVENT_DSP_HALT
    0x0000466C 6355 3 CORTEX_M4_0 POLL C: Firing DSP_MEM_EVENT to class DSP_CO_USER
    0x0000466C 6356 3 CORTEX_M4_0 POLL C: Firing of DSP_MEM_EVENT complete
    0x0000466C 6356 3 CORTEX_M4_0 POLL C: Firing DSP_REQ_EVENT to class DSP_CO_USER
    0x00004768 6356 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x0000466C 6356 3  XPCOM C: ( (dsIObjectEventCallback*)000001836AD8C4A0 )->onEvent( 000001836F4E8080 )
    0x0000466C 6356 3  XPCOM C: ( (nsISupports*)000001836F4E8088 )->queryInterface( 000001836FF064C0, 00000016F4EFCE48 )
    0x0000466C 6356 3  XPCOM R: ( (nsISupports*)000001836F4E8088 )->queryInterface( 000001836FF064C0, *00000016F4EFCE48 = 000001836F4E8080 ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegister*)000001836AD8D5A0 )->getValue( 000001836AD8CAE0, 0x00000000, 00000016F4EFCC60 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegister*)000001836AD8D5A0 )->getValue( 000001836AD8CAE0, 0x00000000, *00000016F4EFCC60 = 0x00200000 ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterAccessEventData*)000001836F4E8080 )->wasRequestAborted( 00000016F4EFCCD0 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterAccessEventData*)000001836F4E8080 )->wasRequestAborted( *00000016F4EFCCD0 = true ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM C: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( 00000016F4EFCA90 )
    0x0000466C 6356 3  XPCOM R: ( (dsIRegisterInfo*)000001836AD533B0 )->getName( *00000016F4EFCA90 = REG_ENDIAN ) = 0x00000000
    0x0000466C 6356 3  XPCOM R: ( (dsIObjectEventCallback*)000001836AD8C4A0 )->onEvent( 000001836F4E8080 ) = 0x00000000
    0x0000466C 6356 3 CORTEX_M4_0 POLL C: Firing of DSP_REQ_EVENT complete
    0x0000466C 6356 4 CORTEX_M4_0 POLL I: Yielding to other threads
    0x00004768 6356 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x0000466C 6356 3 CORTEX_M4_0 POLL R: Poll() returning
    0x0000466C 6356 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 499 ms
    0x0000466C 6356 4  POLL I: TimeToSleep() found shorter sleep time of 499 ms from class DevicePollFrequencyManager
    0x0000466C 6356 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 5000 ms
    0x00004768 6356 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6356 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6356 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6356 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6362 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6362 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6362 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88E60, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88E60, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6363 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88D20, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88D20, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B889E0, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B889E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6363 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88E60, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88C40, 00000016F231D358 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88C40, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6363 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6363 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6363 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6363 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6364 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B889E0, 00000016F231D358 )
    0x00004768 6364 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B889E0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6364 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88BC0, 00000016F231D358 )
    0x00004768 6364 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88BC0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6364 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6364 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6366 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x00004768 6366 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x00002D54 6366 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 6366 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00004768 6366 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CE40 )
    0x00002D54 6366 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00004768 6366 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CE40 = TMS470REX ) = 0x00000000
    0x00002D54 6366 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x00002D54 6367 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 6367 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = true ) = 0x00000000
    0x00002D54 6367 3  XPCOM C: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, 00000016F59FEDD8 )
    0x00002D54 6367 3  XPCOM R: ( (dsIRefreshControl*)00000183702A1668 )->allowUserToPerform( 0x0003, *00000016F59FEDD8 = false ) = 0x00000000
    0x00004768 6368 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 6368 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E8B0 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E8B0 )->Allowed( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6369 3  XPCOM C: ( (dsIReset*)000001836FE9E760 )->Allowed( 00000016F231D510 )
    0x00004768 6369 3  XPCOM R: ( (dsIReset*)000001836FE9E760 )->Allowed( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6370 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B889E0, 00000016F231D358 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B889E0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88BC0, 00000016F231D358 )
    0x00004768 6370 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88BC0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6370 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6370 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6370 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88BC0, 00000016F231D358 )
    0x00004768 6370 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B88BC0, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88C80, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B88C80, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 6371 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88D20, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 0000018372B88D20, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88D20, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 0000018372B88D20, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 6371 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B89640, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372B89640, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B89920, 00000016F231D358 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372B89920, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 6371 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 6371 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x0000466C 6857 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 6857 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 6857 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 6857 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 6857 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4499 ms
    0x0000466C 6857 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 6857 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 6857 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 4499 ms
    0x0000466C 7361 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 7361 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 7361 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 7361 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 7361 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3994 ms
    0x0000466C 7361 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 7361 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 7361 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3994 ms
    0x0000466C 7866 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 0 ms
    0x0000466C 7866 3 CS_DAP_0 POLL C: Polling with state STATE_IDLE and status EVENT_DSP_HALT
    0x0000466C 7866 4 CS_DAP_0 POLL I: Yielding to other threads
    0x0000466C 7866 3 CS_DAP_0 POLL R: Poll() returning
    0x0000466C 7866 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3490 ms
    0x0000466C 7866 4 CS_DAP_0 POLL I: TimeToPollAgain() target is idle and needs polling in 500 ms
    0x0000466C 7866 4  POLL I: TimeToSleep() found shorter sleep time of 500 ms from class DevicePollFrequencyManager
    0x0000466C 7866 4 CORTEX_M4_0 POLL I: TimeToPollAgain() target is idle and needs polling in 3490 ms
    0x0000415C 8026 3  XPCOM C: ( (dsIDebugger*)000001833C305100 )->deConfigure()
    0x0000415C 8026 3  PERF I: Deconfigure() starting...
    0x0000415C 8026 3  XPCOM R: ( (dsIDebugger*)000001833C305100 )->deConfigure() = 0x00000000
    0x0000466C 8026 3  POLL C: SystemDeInitializerImpl::Poll()
    0x0000466C 8026 3  POLL C: SystemDeInitializerImpl::BeginShutdown()
    0x0000466C 8026 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D09F138)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsISimpleEvent,void,class dsISimpleEventCallback> > (this = 000001836D1F89B8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F94F8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F8808)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIBooleanEvent,int,class dsIBooleanEventCallback> > (this = 000001836D1F92B8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F9348)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836D1F8F58)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FC71108)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIBooleanEvent,int,class dsIBooleanEventCallback> > (this = 000001836FA92278)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA91738)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsISimpleEvent,void,class dsISimpleEventCallback> > (this = 000001836FA91DF8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA92158)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA914F8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIBooleanEvent,int,class dsIBooleanEventCallback> > (this = 000001836FA91858)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA90BF8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA909B8)
    0x0000466C 8026 5  COM_DBG_IF I: Final Release for class XPCOMFramework::Event<class XPCOMFramework::EventTemplateArgs<class dsIObjectEvent,class nsISupports * __ptr64,class dsIObjectEventCallback> > (this = 000001836FA918E8)
    0x00004768 8026 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CEB0 )
    0x0000466C 8026 2  CALLSTACK D: CallStack::~CallStack 000001836CE41FF0
    0x0000466C 8026 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 3 CS_DAP_0 TA C: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 3 CS_DAP_0 TA R: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 3 CORTEX_M4_0 TA C: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 3 CORTEX_M4_0 TA R: RegisterForEvents( 0000000000000000 )
    0x0000466C 8026 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8026 3  LIB C: dlsym( 00007FF9C3360000, "CleanupCtools" )
    0x0000466C 8026 3  LIB R: dlsym( 00007FF9C3360000, "CleanupCtools" ) = 00007FF9C33F1D40
    0x0000466C 8026 3  LIB C: dlsym( 00007FF9C3360000, "CleanupCtoolsAsync" )
    0x0000466C 8026 3  LIB R: dlsym( 00007FF9C3360000, "CleanupCtoolsAsync" ) = 00007FF9C33F2210
    0x0000466C 8026 3  CT C: CleanupCtoolsAsync()
    0x0000466C 8026 3  PERF I: CleanupCtoolsAsync() starting...
    0x000033FC 8046 3  CT C: CleanupCallback::OnComplete()
    0x000033FC 8046 3  PERF I: CleanupCtoolsAsync() finished:  0.016642s wall, 0.015625s user + 0.000000s system = 0.015625s CPU (93.9%)
    
    0x000033FC 8046 3  CT R: CleanupCallback::OnComplete()
    0x0000466C 8280 3  CT R: CleanupCtoolsAsync()
    0x0000466C 8280 3  POLL R: SystemDeInitializerImpl::BeginShutdown()
    0x0000466C 8280 3  POLL R: SystemDeInitializerImpl::Poll()
    0x0000466C 8280 4  POLL I: Yielding to other threads for 10 ms
    0x00004768 8280 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CEB0 = (null) ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "TargetType" returned an error condition (0x80780001)
    0x000035DC 8280 3 CORTEX_M4_0 FLASH C: IFlashDevice::Delete()
    0x000035DC 8280 3 CORTEX_M4_0 FLASH R: IFlashDevice::Delete()
    0x000035DC 8280 3  LIB C: dlclose( 00007FF9FBF80000 )
    0x00004768 8280 3  XPCOM C: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( 00000016F231CD60 )
    0x00004768 8280 3  XPCOM R: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( *00000016F231CD60 = 0000000000000000 ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "getGelMenu" returned an error condition (0x80780001)
    0x000035DC 8280 3  LIB R: dlclose( 00007FF9FBF80000 ) = 1
    0x000035DC 8280 4  OFS_DWARF I: Destructing DWARF reader
    0x000035DC 8280 4  OFS_DWARF I: Destructing DWARF reader : dwarf_load
    0x000035DC 8280 4  OFS I: Destructing ELF reader : string table
    0x000035DC 8280 3  LIB C: dlclose( 00007FF9F4040000 )
    0x000035DC 8280 3  LIB R: dlclose( 00007FF9F4040000 ) = 1
    0x000035DC 8280 4  OFS D: OFS memory block size: 0x10000. Number of blocks used: 0
    0x00002D54 8280 3  XPCOM C: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( 00000016F59FEDD0 )
    0x00002D54 8280 3  XPCOM R: ( (dsIRunControl*)00000183702A1600 )->CapableExecutionControl( *00000016F59FEDD0 = false ) = 0x80780001
    0x00002D54 8280 3  XPCOM E: Throwing java exception: The function "CapableExecutionControl" returned an error condition (0x80780001)
    0x00004768 8280 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getCurrentClockEvent( 00000016F231D660 )
    0x00004768 8280 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getCurrentClockEvent( *00000016F231D660 = 0x00000000 ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "getCurrentClockEvent" returned an error condition (0x80780001)
    0x00004768 8280 3  XPCOM C: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( 00000016F231D670 )
    0x00004768 8280 3  XPCOM R: ( (dsIProfileClockManager*)000001836F85DB90 )->getClockEnabled( *00000016F231D670 = false ) = 0x80780001
    0x00004768 8280 3  XPCOM E: Throwing java exception: The function "getClockEnabled" returned an error condition (0x80780001)
    0x00004768 8298 3  XPCOM C: ( (dsIReset*)000001836FE9E7D0 )->Allowed( 00000016F231D510 )
    0x00004768 8298 3  XPCOM R: ( (dsIReset*)000001836FE9E7D0 )->Allowed( *00000016F231D510 = false ) = 0x80780001
    0x00004768 8298 3  XPCOM E: Throwing java exception: The function "Allowed" returned an error condition (0x80780001)
    0x0000466C 8312 3  POLL C: SystemDeInitializerImpl::Poll()
    0x0000466C 8312 3  POLL C: SystemDeInitializerImpl::ThreadsCompleted()
    0x0000466C 8312 3  POLL R: SystemDeInitializerImpl::ThreadsCompleted() = 1, m_nActiveThreads = 0
    0x0000466C 8312 3  POLL C: SystemDeInitializerImpl::FinishShutdown()
    0x0000466C 8312 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8312 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8312 3 CORTEX_M4_0 POLL D: New request of type DSP_RQ_PAUSE_PROFILE_COUNTER added to polling loop by class CSharedProfileManager
    0x0000466C 8312 3  LIB C: dlclose( 00007FFA169A0000 )
    0x0000466C 8312 3  LIB R: dlclose( 00007FFA169A0000 ) = 1
    0x0000466C 8313 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8313 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8313 3  PERF I: GTI_QUIT starting...
    0x0000466C 8313 3 CORTEX_M4_0 GTI C: GTI_QUIT( 0x000001836ADF17A0 )
    0x0000466C 8315 3 CORTEX_M4_0 GTI R: GTI_QUIT( 0x000001836ADF17A0 ) = 0x00000000
    0x0000466C 8315 3  PERF I: GTI_QUIT finished:  0.002354s wall, 0.000000s user + 0.000000s system = 0.000000s CPU (n/a%)
    
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrStepAPI( *00000183727909C0, TPI_STEP_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrStepAPI( *00000183727909C0, TPI_STEP_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrStepAPI( *000001836FCBB820, TPI_STEP_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrStepAPI( *000001836FCBB820, TPI_STEP_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrStepAPI( *000001837278FD30, TPI_STEP_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrStepAPI( *000001837278FD30, TPI_STEP_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3 CORTEX_M4_0 TPI C: TpiSvrGenAPI( *000001837278F970, TPI_GEN_CMD_DESTRUCTOR )
    0x0000466C 8315 3 CORTEX_M4_0 TPI R: TpiSvrGenAPI( *000001837278F970, TPI_GEN_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8315 3  LIB C: dlclose( 000001836E3D0000 )
    0x0000466C 8315 3  LIB R: dlclose( 000001836E3D0000 ) = 1
    0x0000466C 8316 3  LIB C: dlclose( 0000018370500000 )
    0x0000466C 8316 3  LIB R: dlclose( 0000018370500000 ) = 1
    0x0000466C 8316 3 CS_DAP_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8316 3 CS_DAP_0 POLL D: New request of type DSP_RQ_QUEUE_MARKER added to polling loop by unknown
    0x0000466C 8316 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8317 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8317 3  PERF I: GTI_QUIT starting...
    0x0000466C 8317 3 CS_DAP_0 GTI C: GTI_QUIT( 0x000001836D0B3160 )
    0x00004768 8317 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, 00000016F231D4F8 )
    0x00004768 8317 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( AllowInterruptsWhenHalted, *00000016F231D4F8 = 000001836FD18740 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->getPropertyType( 00000016F231D330 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18740 )->queryInterface( 00000183727655F0, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18740 )->queryInterface( 00000183727655F0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 00000183727658F0, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->queryInterface( 00000183727658F0, *00000016F231D358 = 000001836FD187E0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( 00000016F231D510 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD187E0 )->CurValue( *00000016F231D510 = false ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, 00000016F231D4F8 )
    0x00004768 8317 3  XPCOM R: ( (dsIDebugProperties*)000001836F8CDC90 )->getProperty( PoliteRealtimeMode, *00000016F231D4F8 = 000001836FD18800 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->getPropertyType( 00000016F231D330 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->getPropertyType( *00000016F231D330 = 0x00000000 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372765850, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIProperty*)000001836FD18800 )->queryInterface( 0000018372765850, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372765850, 00000016F231D358 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->queryInterface( 0000018372765850, *00000016F231D358 = 000001836FD188A0 ) = 0x00000000
    0x00004768 8317 3  XPCOM C: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( 00000016F231D510 )
    0x00004768 8317 3  XPCOM R: ( (dsIBooleanProperty*)000001836FD188A0 )->CurValue( *00000016F231D510 = true ) = 0x00000000
    0x0000466C 8323 3 CS_DAP_0 GTI R: GTI_QUIT( 0x000001836D0B3160 ) = 0x00000000
    0x0000466C 8323 3  PERF I: GTI_QUIT finished:  0.006777s wall, 0.015625s user + 0.015625s system = 0.031250s CPU (461.1%)
    
    0x0000466C 8323 3 CS_DAP_0 TPI C: TpiSvrGenAPI( *000001836FCB92A0, TPI_GEN_CMD_DESTRUCTOR )
    0x0000466C 8323 3 CS_DAP_0 TPI R: TpiSvrGenAPI( *000001836FCB92A0, TPI_GEN_CMD_DESTRUCTOR ) = 0x00000000
    0x0000466C 8323 3  LIB C: dlclose( 000001836E340000 )
    0x0000466C 8323 3  LIB R: dlclose( 000001836E340000 ) = 1
    0x0000466C 8323 3  LIB C: dlclose( 000001836E410000 )
    0x0000466C 8323 3  LIB R: dlclose( 000001836E410000 ) = 1
    0x0000466C 8323 1  COM_DBG_IF C: ImplementationValidity::MarkInvalid()
    0x0000466C 8323 1  COM_DBG_IF R: ImplementationValidity::MarkInvalid()
    0x0000466C 8323 3  LIB C: dlclose( 00007FFA01EC0000 )
    0x0000466C 8323 3  LIB R: dlclose( 00007FFA01EC0000 ) = 1
    0x0000466C 8323 3  LIB C: dlclose( 00007FF9C3360000 )
    0x0000466C 8323 3  LIB R: dlclose( 00007FF9C3360000 ) = 1
    0x0000466C 8323 3  PERF I: Deconfigure() finished:  0.297548s wall, 0.218750s user + 0.046875s system = 0.265625s CPU (89.3%)
    
    0x0000466C 8323 3  COM_DBG_IF C: class dsDebugger::OnDeConfigured()
    0x0000466C 8323 3  XPCOM C: ( (dsISimpleEventCallback*)000001836079D9F0 )->onEvent()
    0x0000466C 8343 3  XPCOM R: ( (dsISimpleEventCallback*)000001836079D9F0 )->onEvent() = 0x00000000
    0x0000466C 8343 3  COM_DBG_IF R: class dsDebugger::OnDeConfigured()
    0x0000466C 8343 3  POLL R: SystemDeInitializerImpl::FinishShutdown()
    0x00004768 8667 3  XPCOM C: ( (dsITarget*)000001836F9466B0 )->TargetType( 00000016F231CEB0 )
    0x00004768 8667 3  XPCOM R: ( (dsITarget*)000001836F9466B0 )->TargetType( *00000016F231CEB0 = (null) ) = 0x80780001
    0x00004768 8667 3  XPCOM E: Throwing java exception: The function "TargetType" returned an error condition (0x80780001)
    0x00004768 8667 3  XPCOM C: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( 00000016F231CD60 )
    0x00004768 8667 3  XPCOM R: ( (dsIGetGelMenu*)000001836F946718 )->getGelMenu( *00000016F231CD60 = 0000000000000000 ) = 0x80780001
    0x00004768 8667 3  XPCOM E: Throwing java exception: The function "getGelMenu" returned an error condition (0x80780001)
    

  • Allan Overstreet98 said:
    I can step through main(), the program appears to be getting stuck at,
    //
    // Wait for the link to become active.
    //
    UpdateStatus("Waiting for Link.");
    while((MAP_EMACPHYRead(EMAC0_BASE, 0, EPHY_BMSR) &
               EPHY_BMSR_LINKSTAT) == 0)
    {
    }

    OK, the problem with loosing JTAG connection appears to occur once the program is part way through initialising the Ethernet. 

    Allan Overstreet98 said:
    0x0000466C 6285 3 CORTEX_M4_0 STATE I: Target execution state changed to STATUS_CABLE_BREAK
    0x0000466C 6285 3 CORTEX_M4_0 GTI C: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000000, *0x00000016F4EFDA90 = 0x00000000, *0x00000016F4EFDAA0 = 0x00000000, *0x00000016F4EFDAB0 = 0x00000000, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000000, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "", 0x00000400 )
    0x0000466C 6285 3 CORTEX_M4_0 GTI R: GTI_GETERRSTR_EX3( 0x000001836ADF17A0, *0x00000016F4EFDA98 = 0x00000010, *0x00000016F4EFDA90 = 0xFFFFFB6E, *0x00000016F4EFDAA0 = 0x00000020, *0x00000016F4EFDAB0 = 0x00000002, *0x00000016F4EFDAB4 = 0x00000000, *0x00000016F4EFDAAC = 0x00000008, *0x00000016F4EFDAA8 = 0x00000000, "", 0x00000040, "(Error -1170 @ 0x0)
    Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK).
    (Emulation package 9.2.0.00002)
    ", 0x00000400 ) = 0x00000001

    And the above part of the debug server log indicate the debugger detects a "cable break" when is unable to access the DAP, which means the XDS100v2 is sending data to the device via the TDI pin but is not receiving anything back on the TDO pin.

    In this state can you check if the voltages on the VDD and VDDC are within spec on the custom board. If the power supplies have an issue on the custom board, perhaps for some reason shows up at the point at which the internal Ethernet phy has been enabled.

    Also, is the "LEFT LED" on the Ethernet jack, connected to PF0 which defaults to Link OK, ON at the point of failure?

    If I step through the enet_uip example from TivaWare on a EK-TM4C129EXL with an Ethernet cable connected, then D4 (connected to PF0) comes on after the following (which is prior to waiting for the link to become active):
        MAP_SysCtlPeripheralReset(SYSCTL_PERIPH_EMAC0);

    Can the program which fails on the custom board be run on a launchpad, to try and help eliminate if the problem is on the custom board or not?

    Based upon the code fragments, your program is based upon the TivaWare enet_uip example.

  • Chester,

    To answer some of your questions,

    Also, is the "LEFT LED" on the Ethernet jack, connected to PF0 which defaults to Link OK, ON at the point of failure?

    Yes LEFT LED is connected to PF0. PF0 is also connected to a second LED (D67) for the front panel.

    In this state can you check if the voltages on the VDD and VDDC are within spec on the custom board. If the power supplies have an issue on the custom board, perhaps for some reason shows up at the point at which the internal Ethernet phy has been enabled.

    I connected VDD and VDDC from test points on the custom board to a scope. It does appear that VDD is dropping in voltage from 3.3V to 3.0V.

    Can the program which fails on the custom board be run on a launchpad, to try and help eliminate if the problem is on the custom board or not?

    Yes. The code works on the TM4C1294XL.

    Below is the RS422 output from the LaunchPad,

    (This strange text is normal).

    Out of curiosity I decided to start removing some parts on the custom board. I removed R180, R181, R186, R187. Each of these resistors is in series with an LED going to PF0 and PF4. Removing these resistors didn't appear to fix the problem. I them desoldered J16 (the RJ45 connector) and the custom board appears to be not shorting out. Below is the output from the Debug RS422 port.

    Running the same software on the custom board gets stuck at this segment of code,

    //
    // Wait for the link to become active.
    //
    UpdateStatus("Waiting for Link.");
    while((MAP_EMACPHYRead(EMAC0_BASE, 0, EPHY_BMSR) &
    EPHY_BMSR_LINKSTAT) == 0)
    {
    }

    I expect this might be because J16 is not there. I am not quite sure why the Launchpad is working and the custom board isn't.

    Thanks,

    Allan

  • Allan Overstreet98 said:
    It does appear that VDD is dropping in voltage from 3.3V to 3.0V.

    From the TM4C1294NCPDT datasheet:

    I.e. 2.97V on the VDDA and VDD rails is the threshold of the minimum external supply voltage / maximum Power-OK threshold at which the device is released from reset.

    Therefore, if the VDD is dropping to 3.0V it is probable that the device stops working / is held in reset.

    From looking at the schematic the 5V PSU and 3.3V linear regular at both rated for 1A which think should be sufficient for your components; haven't summed up the expected power consumption of all components but a launchpad with a USB 2.0 power supply can draw a max of 500 mA.

    Allan Overstreet98 said:
    I am not quite sure why the Launchpad is working and the custom board isn't.

    I think there is a problem with the 3.3V supply on the custom board, maybe there is a short somewhere or possibly a bad (high resistance) solder joint. Do you have more than one custom board, and if so do all show the same symptoms?

  • I don't have another custom board to test. Some solder joints are a bit dirty, and will need to be cleaned. If all else fails I will remove the MCU, clean the pads and replace the MCU.

  • Hi Chester,

    I believe we are getting closer to fixing the problem. I looked at the microcontroller that was soldered on previously and it had a ton of solder paste/flux between the pins (I am surprised it worked at all). I removed the old MCU, cleaned the pads and soldered down a new MCU with some good results. 

    The new MCU does not appear to be shorting out with J16 (the RJ45 connector) installed. While stepping through the code I can get past "Waiting for Link" and actually get to the portion of the program that is important. After disconnecting the debugger and letting the MCU run I am noticing the MCU gets stuck at "Waiting for Link". I am hoping this might be a software issue that can be easily fixed. Do you think there is a software issue or something else?

    Thanks,

    Allan

  • Hi Allan,

    Allan Overstreet98 said:
    I can get past "Waiting for Link" and actually get to the portion of the program that is important. After disconnecting the debugger and letting the MCU run I am noticing the MCU gets stuck at "Waiting for Link".

     Glad that you are making progress.  Which program are you running?

      Are you saying if you run in debug mode then you can successfully run the program (viewing the webpage on the browser) but in run mode (with the debugger disconnected) then the program will get stuck? 

      I have not seen this behavior running the TivaWare Ethernet example on the LaunchPad where it will work in debug mode but not in run mode. Is it possible that there is still some hardware issue on your board?