<?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: Lesson 3 &#8211; PSoC 6 Introduction: FreeRTOS and a Debugging UART	</title>
	<atom:link href="https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/feed/" rel="self" type="application/rss+xml" />
	<link>https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/</link>
	<description>Engineering for the Internet of Things</description>
	<lastBuildDate>Mon, 22 Oct 2018 11:32:54 +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/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-6586</link>

		<dc:creator><![CDATA[Alan Hawse]]></dc:creator>
		<pubDate>Thu, 14 Jun 2018 19:29:31 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=4510#comment-6586</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-4885&quot;&gt;JWeaver&lt;/a&gt;.

Yes... it is just pointing to the base address of the PWM.  There are a bunch of registers that control it... you can look at them with the *]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-4885">JWeaver</a>.</p>
<p>Yes&#8230; it is just pointing to the base address of the PWM.  There are a bunch of registers that control it&#8230; you can look at them with the *</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alan Hawse		</title>
		<link>https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-6585</link>

		<dc:creator><![CDATA[Alan Hawse]]></dc:creator>
		<pubDate>Thu, 14 Jun 2018 19:28:30 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=4510#comment-6585</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-4884&quot;&gt;JWeaver&lt;/a&gt;.

That is just a pointer... so make it a star... *PWM_1_HW]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-4884">JWeaver</a>.</p>
<p>That is just a pointer&#8230; so make it a star&#8230; *PWM_1_HW</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JWeaver		</title>
		<link>https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-4885</link>

		<dc:creator><![CDATA[JWeaver]]></dc:creator>
		<pubDate>Wed, 21 Mar 2018 10:24:39 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=4510#comment-4885</guid>

					<description><![CDATA[I think I understand-  it&#039;s just pointing the the base address specific for that PWM.  Is that base address a control register for that counter.? In that case, it would be nice from a troubleshooting point of view to actually see  its contents  using printf().]]></description>
			<content:encoded><![CDATA[<p>I think I understand-  it&#8217;s just pointing the the base address specific for that PWM.  Is that base address a control register for that counter.? In that case, it would be nice from a troubleshooting point of view to actually see  its contents  using printf().</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JWeaver		</title>
		<link>https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-4884</link>

		<dc:creator><![CDATA[JWeaver]]></dc:creator>
		<pubDate>Wed, 21 Mar 2018 09:38:25 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=4510#comment-4884</guid>

					<description><![CDATA[Alan,  If in the case statement for printf,  I added &quot;printf(&quot;%p\n&quot;,PWM_1_HW)&quot;  :
case &#039;s&#039;: // Stop the PWM
                printf(&quot;Stopped PWM\r\n&quot;);
                Cy_TCPWM_PWM_Disable(PWM_1_HW,PWM_1_CNT_NUM);
                printf(&quot;%p\n&quot;,PWM_1_HW);
This  prints out the address of PWM_1_HW,  but how can I printf  the value that is stored in that address?  I want to see what is being passed to the Cy_TCPWM_PWM_Disable( ) function.  For that matter I&#039;d like to the same with PWM_1_CNT_NUM ....]]></description>
			<content:encoded><![CDATA[<p>Alan,  If in the case statement for printf,  I added &#8220;printf(&#8220;%p\n&#8221;,PWM_1_HW)&#8221;  :<br />
case &#8216;s&#8217;: // Stop the PWM<br />
                printf(&#8220;Stopped PWM\r\n&#8221;);<br />
                Cy_TCPWM_PWM_Disable(PWM_1_HW,PWM_1_CNT_NUM);<br />
                printf(&#8220;%p\n&#8221;,PWM_1_HW);<br />
This  prints out the address of PWM_1_HW,  but how can I printf  the value that is stored in that address?  I want to see what is being passed to the Cy_TCPWM_PWM_Disable( ) function.  For that matter I&#8217;d like to the same with PWM_1_CNT_NUM &#8230;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alan Hawse		</title>
		<link>https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-3977</link>

		<dc:creator><![CDATA[Alan Hawse]]></dc:creator>
		<pubDate>Sat, 11 Nov 2017 15:10:40 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=4510#comment-3977</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-3969&quot;&gt;JMECKSTROTH&lt;/a&gt;.

My guess is that when you &quot;paste&quot; you didnt click on the Workspace.  The problem is probably that you were still on the project that you were copying.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-3969">JMECKSTROTH</a>.</p>
<p>My guess is that when you &#8220;paste&#8221; you didnt click on the Workspace.  The problem is probably that you were still on the project that you were copying.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JMECKSTROTH		</title>
		<link>https://iotexpert.com/lesson-3-psoc-6-introduction-freertos-and-a-debugging-uart/#comment-3969</link>

		<dc:creator><![CDATA[JMECKSTROTH]]></dc:creator>
		<pubDate>Fri, 10 Nov 2017 19:29:45 +0000</pubDate>
		<guid isPermaLink="false">https://iotexpert.com/?p=4510#comment-3969</guid>

					<description><![CDATA[Problem with this lesson:  After copy/paste of the first project, Creator will not permit renaming, giving the error message &quot;Cannot rename &quot;FirstDesign_Copy_01&quot; to &quot;FreeRTOS-UART&quot;: (Failed to move C:\Users\nnnnn\Documents\PSoC Creator\PSoC6-Webinar-A\FirstDesign_Copy_01.cydsn to C:\Users\nnnnn\Documents\PSoC Creator\PSoC6-Webinar-A\FreeRTOS-UART.cydsn: Access to the path &#039;C:\Users\nnnnn\Documents\PSoC Creator\PSoC6-Webinar-A\FirstDesign_Copy_01.cydsn&#039; is denied.).]]></description>
			<content:encoded><![CDATA[<p>Problem with this lesson:  After copy/paste of the first project, Creator will not permit renaming, giving the error message &#8220;Cannot rename &#8220;FirstDesign_Copy_01&#8221; to &#8220;FreeRTOS-UART&#8221;: (Failed to move C:\Users\nnnnn\Documents\PSoC Creator\PSoC6-Webinar-A\FirstDesign_Copy_01.cydsn to C:\Users\nnnnn\Documents\PSoC Creator\PSoC6-Webinar-A\FreeRTOS-UART.cydsn: Access to the path &#8216;C:\Users\nnnnn\Documents\PSoC Creator\PSoC6-Webinar-A\FirstDesign_Copy_01.cydsn&#8217; is denied.).</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
