<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Can not resume debugging session in MCUXpresso IDE</title>
    <link>https://community.nxp.com/t5/MCUXpresso-IDE/Can-not-resume-debugging-session/m-p/1634928#M8909</link>
    <description>&lt;P&gt;In this demo I wanted to resume the debugging session for the next lines in order to see the result in terminal. However it is not going to the next line or to continue in order process the following part of the code where Im printing some inference numbers on terminal. How can I fix this?&lt;BR /&gt;&lt;BR /&gt;this is the code where Im doing debugging:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt;/* (recording_win x frame_shift) is the actual recording window size. */&lt;BR /&gt;int recording_win = 1;&lt;/P&gt;&lt;P&gt;KWS_MFCC kws_mfcc(recording_win);&lt;BR /&gt;&lt;BR /&gt;const std::string labels[] = {"_silence_", "_unknown_","baby_cry", "baby_laugh"};&lt;/P&gt;&lt;P&gt;audio_init();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Init board hardware */&lt;BR /&gt;BOARD_ConfigMPU();&lt;BR /&gt;BOARD_InitPins();&lt;BR /&gt;BOARD_BootClockRUN();&lt;BR /&gt;CLOCK_InitAudioPll(&amp;amp;audioPllConfig);&lt;BR /&gt;BOARD_InitDebugConsole();&lt;/P&gt;&lt;P&gt;InitTimer();&lt;/P&gt;&lt;P&gt;std::unique_ptr&amp;lt;tflite::FlatBufferModel&amp;gt; model;&lt;BR /&gt;std::unique_ptr&amp;lt;tflite::Interpreter&amp;gt; interpreter;&lt;BR /&gt;TfLiteTensor* input_tensor = 0;&lt;BR /&gt;InferenceInit(model, interpreter, &amp;amp;input_tensor, false);&lt;/P&gt;&lt;P&gt;LOG(INFO) &amp;lt;&amp;lt; "Baby Cry Detection example using a TensorFlow Lite model.\r\n" &amp;lt;&amp;lt; std::endl;&lt;BR /&gt;LOG(INFO) &amp;lt;&amp;lt; "Detection threshold: " &amp;lt;&amp;lt; DETECTION_TRESHOLD &amp;lt;&amp;lt; "%\r\n";&lt;/P&gt;&lt;P&gt;LOG(INFO) &amp;lt;&amp;lt; "\r\nStatic data processing:\r\n" &amp;lt;&amp;lt; std::endl;&lt;/P&gt;&lt;P&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)OFF, labels, model, interpreter, input_tensor);&lt;BR /&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)RIGHT, labels, model, interpreter, input_tensor);&lt;BR /&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)LEFT, labels, model, interpreter, input_tensor);&lt;BR /&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)ON, labels, model, interpreter, input_tensor);&lt;/P&gt;</description>
    <pubDate>Tue, 18 Apr 2023 00:00:46 GMT</pubDate>
    <dc:creator>Emin</dc:creator>
    <dc:date>2023-04-18T00:00:46Z</dc:date>
    <item>
      <title>Can not resume debugging session</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Can-not-resume-debugging-session/m-p/1634928#M8909</link>
      <description>&lt;P&gt;In this demo I wanted to resume the debugging session for the next lines in order to see the result in terminal. However it is not going to the next line or to continue in order process the following part of the code where Im printing some inference numbers on terminal. How can I fix this?&lt;BR /&gt;&lt;BR /&gt;this is the code where Im doing debugging:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt;/* (recording_win x frame_shift) is the actual recording window size. */&lt;BR /&gt;int recording_win = 1;&lt;/P&gt;&lt;P&gt;KWS_MFCC kws_mfcc(recording_win);&lt;BR /&gt;&lt;BR /&gt;const std::string labels[] = {"_silence_", "_unknown_","baby_cry", "baby_laugh"};&lt;/P&gt;&lt;P&gt;audio_init();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Init board hardware */&lt;BR /&gt;BOARD_ConfigMPU();&lt;BR /&gt;BOARD_InitPins();&lt;BR /&gt;BOARD_BootClockRUN();&lt;BR /&gt;CLOCK_InitAudioPll(&amp;amp;audioPllConfig);&lt;BR /&gt;BOARD_InitDebugConsole();&lt;/P&gt;&lt;P&gt;InitTimer();&lt;/P&gt;&lt;P&gt;std::unique_ptr&amp;lt;tflite::FlatBufferModel&amp;gt; model;&lt;BR /&gt;std::unique_ptr&amp;lt;tflite::Interpreter&amp;gt; interpreter;&lt;BR /&gt;TfLiteTensor* input_tensor = 0;&lt;BR /&gt;InferenceInit(model, interpreter, &amp;amp;input_tensor, false);&lt;/P&gt;&lt;P&gt;LOG(INFO) &amp;lt;&amp;lt; "Baby Cry Detection example using a TensorFlow Lite model.\r\n" &amp;lt;&amp;lt; std::endl;&lt;BR /&gt;LOG(INFO) &amp;lt;&amp;lt; "Detection threshold: " &amp;lt;&amp;lt; DETECTION_TRESHOLD &amp;lt;&amp;lt; "%\r\n";&lt;/P&gt;&lt;P&gt;LOG(INFO) &amp;lt;&amp;lt; "\r\nStatic data processing:\r\n" &amp;lt;&amp;lt; std::endl;&lt;/P&gt;&lt;P&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)OFF, labels, model, interpreter, input_tensor);&lt;BR /&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)RIGHT, labels, model, interpreter, input_tensor);&lt;BR /&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)LEFT, labels, model, interpreter, input_tensor);&lt;BR /&gt;RunInference(&amp;amp;kws_mfcc, (int16_t*)ON, labels, model, interpreter, input_tensor);&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 00:00:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Can-not-resume-debugging-session/m-p/1634928#M8909</guid>
      <dc:creator>Emin</dc:creator>
      <dc:date>2023-04-18T00:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can not resume debugging session</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Can-not-resume-debugging-session/m-p/1635567#M8910</link>
      <description>&lt;P&gt;Have you already tried suspending the target to see what it is doing?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 17:17:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Can-not-resume-debugging-session/m-p/1635567#M8910</guid>
      <dc:creator>ErichStyger</dc:creator>
      <dc:date>2023-04-18T17:17:02Z</dc:date>
    </item>
  </channel>
</rss>

