<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: PSoC4 Boot Sequence (Part 1) &#8211; Debugging to the Reset Vector	</title>
	<atom:link href="https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/feed/" rel="self" type="application/rss+xml" />
	<link>https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/</link>
	<description>Engineering for the Internet of Things</description>
	<lastBuildDate>Thu, 04 May 2017 12:49:14 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Alan Hawse		</title>
		<link>https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2386</link>

		<dc:creator><![CDATA[Alan Hawse]]></dc:creator>
		<pubDate>Thu, 04 May 2017 12:49:14 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=3015#comment-2386</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2383&quot;&gt;Vasyl Yosypenko&lt;/a&gt;.

Excellent!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2383">Vasyl Yosypenko</a>.</p>
<p>Excellent!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Vasyl Yosypenko		</title>
		<link>https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2383</link>

		<dc:creator><![CDATA[Vasyl Yosypenko]]></dc:creator>
		<pubDate>Thu, 04 May 2017 05:57:18 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=3015#comment-2383</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2377&quot;&gt;Alan Hawse&lt;/a&gt;.

Thank You! Now it works. I&#039;ve put 0x00000004 in Address Breakpoint, but correct address is 0x00000011.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2377">Alan Hawse</a>.</p>
<p>Thank You! Now it works. I&#8217;ve put 0x00000004 in Address Breakpoint, but correct address is 0x00000011.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alan Hawse		</title>
		<link>https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2377</link>

		<dc:creator><![CDATA[Alan Hawse]]></dc:creator>
		<pubDate>Wed, 03 May 2017 19:25:42 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=3015#comment-2377</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2373&quot;&gt;Vasyl Yosypenko&lt;/a&gt;.

You need to put the breakpoint on the address contained in the reset vector... the debugger won&#039;t break until it try&#039;s to load an instruction from that address.  I fell into this as well.  The loading of the reset vector into the PC doesn&#039;t trigger a break.  The break occurs when it fetches that opcode.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2373">Vasyl Yosypenko</a>.</p>
<p>You need to put the breakpoint on the address contained in the reset vector&#8230; the debugger won&#8217;t break until it try&#8217;s to load an instruction from that address.  I fell into this as well.  The loading of the reset vector into the PC doesn&#8217;t trigger a break.  The break occurs when it fetches that opcode.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Vasyl Yosypenko		</title>
		<link>https://iotexpert.com/psoc4-boot-sequence-part-1-debugging-to-the-reset-vector/#comment-2373</link>

		<dc:creator><![CDATA[Vasyl Yosypenko]]></dc:creator>
		<pubDate>Wed, 03 May 2017 17:13:39 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=3015#comment-2373</guid>

					<description><![CDATA[Hello!
I try to make the same as in your article, but when I try to set  &quot;Address Breakpoint&quot; to 0x00000004 I get message like &quot;it not possible to set hardware breakpoint set software breakpoint&quot;.  I wasn&#039;t able to catch program at Reset in  Cm0Start.c.
I can catch my program only at  InputInterrupt_StartEx(SWPin_Control) line.
Code example: Digital_Pins01
Device: CY8C4245AXI-483

Thanks!]]></description>
			<content:encoded><![CDATA[<p>Hello!<br />
I try to make the same as in your article, but when I try to set  &#8220;Address Breakpoint&#8221; to 0x00000004 I get message like &#8220;it not possible to set hardware breakpoint set software breakpoint&#8221;.  I wasn&#8217;t able to catch program at Reset in  Cm0Start.c.<br />
I can catch my program only at  InputInterrupt_StartEx(SWPin_Control) line.<br />
Code example: Digital_Pins01<br />
Device: CY8C4245AXI-483</p>
<p>Thanks!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
