<?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>LPCXpresso IDE中的主题 Re: Debug pin functions lost</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547434#M10109</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Thu Oct 09 22:17:07 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: lucamini&lt;/STRONG&gt;&lt;BR /&gt;At reset, the pin recover it's default status...&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;No, SWM is different&amp;nbsp;&amp;nbsp; :O &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UM10736:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;8.3 Basic configuration&lt;/STRONG&gt;&lt;BR /&gt;...&lt;BR /&gt;[color=#f00]Remark: The switch matrix is only reset by a POR or BOD reset. A hardware reset via the&lt;BR /&gt;RESET pin or a watchdog timer reset do not reset the switch matrix.[/color] Therefore, peripheral&lt;BR /&gt;functions remain connected to pins through the hardware or watchdog reset and the pins&lt;BR /&gt;remain input or output as defined by the switch matrix and assume the default state as&lt;BR /&gt;defined by the peripheral connected to them.&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 22:06:17 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T22:06:17Z</dc:date>
    <item>
      <title>Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547425#M10100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lucamini on Mon Oct 06 07:58:23 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm searching for the issue in the subject.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I lost the debug usage when my LPC1517 executes this routine, but I'm unable to find which is the problem because no one pins is the debug one (SWD interface):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The routine is: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;void Board_analInputInit(void)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Setup ADC for 12-bit mode and normal power */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_Init(LPC_ADC0, 0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Setup for maximum ADC clock rate */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_SetClockRate(LPC_ADC0, ADC_MAX_SAMPLE_RATE);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* For ADC0, sequencer A will be used without threshold events.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; It will be triggered manually by the sysTick interrupt and&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; only monitor the internal temperature sensor. */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_SetupSequencer(LPC_ADC0, ADC_SEQA_IDX, ( ADC_SEQ_CTRL_CHANSEL(0) | ADC_SEQ_CTRL_CHANSEL(1) | ADC_SEQ_CTRL_CHANSEL(2) | ADC_SEQ_CTRL_CHANSEL(3) | ADC_SEQ_CTRL_CHANSEL(4) | ADC_SEQ_CTRL_CHANSEL(5) | ADC_SEQ_CTRL_CHANSEL(6) | ADC_SEQ_CTRL_CHANSEL(7) | ADC_SEQ_CTRL_CHANSEL(10) |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ADC_SEQ_CTRL_MODE_EOS));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Disables pullups/pulldowns and disable digital mode */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 0, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 1, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 2, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 3, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 4, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 5, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 6, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 7, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_IOCON_PinMuxSet(LPC_IOCON, 0, 8, IOCON_FUNC1 | IOCON_MODE_INACT | IOCON_ADMODE_EN);&amp;nbsp; // power ctrl&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Use higher voltage trim for both ADCs */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_SetTrim(LPC_ADC0, ADC_TRIM_VRANGE_HIGHV);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_0);// pwr ctrl&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_2);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_3);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_4);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_5);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_6);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_7);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_10);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Need to do a calibration after initialization and trim */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_StartCalibration(LPC_ADC0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while (!(Chip_ADC_IsCalibrationDone(LPC_ADC0)))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Clear all pending interrupts */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_ClearFlags(LPC_ADC0, Chip_ADC_GetFlags(LPC_ADC0));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Enable sequence A completion interrupts for ADC0 */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_EnableInt(LPC_ADC0, ADC_INTEN_SEQA_ENABLE);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Enable related ADC NVIC interrupts */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NVIC_EnableIRQ(ADC0_SEQA_IRQn);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Enable sequencers */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_ADC_EnableSequencer(LPC_ADC0, ADC_SEQA_IDX);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Luca&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547425#M10100</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547426#M10101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lucamini on Tue Oct 07 06:10:50 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I found that the problem is the:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_4);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;with this function I'm not able to debug another time whitout a recovering procedure.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But to read the analog channel I need to setup this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In the documentation nothing is told about this. How I can solve?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Luca&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547426#M10101</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547427#M10102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Tue Oct 07 07:03:56 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Could be useful if you describe which chip you are using...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547427#M10102</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547428#M10103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lucamini on Tue Oct 07 08:51:10 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;It is the first thing I written in the first post : LPC1517 &lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547428#M10103</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547429#M10104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Tue Oct 07 08:58:07 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: lucamini&lt;/STRONG&gt;&lt;BR /&gt;It is the first thing I written in the first post : LPC1517&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So it is a LQFP 70.7?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547429#M10104</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547430#M10105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lucamini on Wed Oct 08 08:04:05 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;no, it is a lqfp48&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547430#M10105</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547431#M10106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Wed Oct 08 09:38:51 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: lucamini&lt;/STRONG&gt;&lt;BR /&gt;I found that the problem is the:&lt;BR /&gt;&lt;BR /&gt;Chip_SWM_EnableFixedPin(SWM_FIXED_ADC0_4);&lt;BR /&gt;&lt;BR /&gt;In the documentation nothing is told about this.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; :quest: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UM10736:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Table 90. ISP pin assignments&lt;BR /&gt;&lt;BR /&gt;ISP pin&amp;nbsp;&amp;nbsp; LQFP48&lt;BR /&gt;[color=#f00]ISP_0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PIO0_4[/color]&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547431#M10106</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547432#M10107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lucamini on Thu Oct 09 08:38:18 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, but that don't explain why if I configure it as adc I lost the debug functionality. At reset, the pin recover it's default status and the debugger should reset the device at the beginning of the debug session(I have the reset pin connected to the lpclink2), so it is not so clear why it doesn't work but works if I force the level to gnd.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547432#M10107</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547433#M10108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mc on Thu Oct 09 21:17:58 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi lucamini,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you try after turning off power to the board?&amp;nbsp; Debugger should connect at each power on. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SWM retains its state and won't reset by just asserting reset to device.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547433#M10108</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Debug pin functions lost</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547434#M10109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Thu Oct 09 22:17:07 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: lucamini&lt;/STRONG&gt;&lt;BR /&gt;At reset, the pin recover it's default status...&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;No, SWM is different&amp;nbsp;&amp;nbsp; :O &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UM10736:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;8.3 Basic configuration&lt;/STRONG&gt;&lt;BR /&gt;...&lt;BR /&gt;[color=#f00]Remark: The switch matrix is only reset by a POR or BOD reset. A hardware reset via the&lt;BR /&gt;RESET pin or a watchdog timer reset do not reset the switch matrix.[/color] Therefore, peripheral&lt;BR /&gt;functions remain connected to pins through the hardware or watchdog reset and the pins&lt;BR /&gt;remain input or output as defined by the switch matrix and assume the default state as&lt;BR /&gt;defined by the peripheral connected to them.&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:06:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Debug-pin-functions-lost/m-p/547434#M10109</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:06:17Z</dc:date>
    </item>
  </channel>
</rss>

