<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://e2e.ti.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Arm-based microcontrollers forum - Recent Threads</title><link>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 03 Aug 2026 15:35:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum" /><item><title>AM2434: Trigger EnDat3 through external Interrupt via CAP</title><link>https://e2e.ti.com/thread/1669939?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 15:35:41 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:ad29c0b4-30d7-4a0b-9481-58f6bc46c269</guid><dc:creator>Florian Ertl</dc:creator><slash:comments>0</slash:comments><comments>https://e2e.ti.com/thread/1669939?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669939/am2434-trigger-endat3-through-external-interrupt-via-cap/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2434" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2434&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;is it possible to use EnDat3 in periodic-command code through triggering via an external interrupt the CAP-Input? I oriented myself on the routing example:&amp;nbsp;&lt;/p&gt;
&lt;div id="main-content"&gt;
&lt;p&gt;&lt;a href="https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1452411/faq-lp-am243-routing-gpio-interrupts-to-pru-core" rel="nofollow"&gt;https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1452411/faq-lp-am243-routing-gpio-interrupts-to-pru-core&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id="labels-section"&gt;
&lt;div&gt;
&lt;div&gt;but i couldn&amp;#39;t make it work.&lt;br&gt;Configuring Sciclient did work, but the PRU never registered an event.&lt;br&gt;&lt;br&gt;Here the function i used:&lt;br&gt;&lt;br&gt;
&lt;div&gt;
&lt;div&gt;int32_t routeGpio1ToIep0Cap0(uint16_t gpioPin)&lt;/div&gt;
&lt;div&gt;{&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; struct tisci_msg_rm_irq_set_req req;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; struct tisci_msg_rm_irq_set_resp resp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; int32_t status;&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; memset(&amp;amp;req, 0, sizeof(req));&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; memset(&amp;amp;resp, 0, sizeof(resp));&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; req.secondary_host = TISCI_MSG_VALUE_RM_UNUSED_SECONDARY_HOST;&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; /*&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* GPIO0 source indexes 0...89 correspond to the individual&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* GPIO0 pin interrupt outputs.&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; req.src_id &amp;nbsp; &amp;nbsp;= TISCI_DEV_GPIO1;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; req.src_index = gpioPin; // 6&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; req.valid_params = TISCI_MSG_VALUE_RM_DST_ID_VALID | TISCI_MSG_VALUE_RM_DST_HOST_IRQ_VALID;&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; /*&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* PRU_ICSSG0 destination inputs:&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &amp;nbsp;4 = IEP0 CAP request 0&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &amp;nbsp;5 = IEP0 CAP request 1&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &amp;nbsp;...&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* &amp;nbsp;9 = IEP0 CAP request 5&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; req.dst_id &amp;nbsp; &amp;nbsp; &amp;nbsp; = TISCI_DEV_PRU_ICSSG0;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; req.dst_host_irq = 4;&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; status = Sciclient_rmIrqSet(&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;req,&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;resp,&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SystemP_WAIT_FOREVER);&lt;/div&gt;
&lt;br&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; return status;&lt;/div&gt;
&lt;div&gt;}&lt;br&gt;&lt;br&gt;LP-AM243x-Pin used: 48 (=PRG0_PRU0_GPO6/H2)&lt;br&gt;&lt;br&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/3527.image.png" alt="image.png" data-temp-id="image.png-66661"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;EnDat works with the IEP-Timer settings and CAP6.&lt;br&gt;&lt;br&gt;Best regards,&lt;br&gt;Flo&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>PMP41042: PMP41042 - transformer cyntec VT-22247A power rating</title><link>https://e2e.ti.com/thread/1669899?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 14:18:16 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:5e6508c7-3dbc-44fe-801a-110ab8a83e5b</guid><dc:creator>zhang James</dc:creator><slash:comments>0</slash:comments><comments>https://e2e.ti.com/thread/1669899?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669899/pmp41042-pmp41042---transformer-cyntec-vt-22247a-power-rating/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/PMP41042" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;PMP41042&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Hi TI team&lt;/p&gt;
&lt;p&gt;I have a little confusion about VT-22247A used in PMP41042. The transformers&amp;#39; core is PQ52/32/43.8. It seems like the power rating is&amp;lt;1kw, but it was actually used in 3.3kw system. Is there any reason to support the using? Looking forward for your answers, thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>LP-MSPM33C321A: LP-MSPM33C321 / XDS110 error:CS_DAP_0: Error: (Error -590 @ 0x0) / no DFU-mode</title><link>https://e2e.ti.com/thread/1669887?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 13:47:29 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:2ab1b2cd-1dcf-4ed1-be0d-31a4b60bfbf6</guid><dc:creator>discher</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669887?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669887/lp-mspm33c321a-lp-mspm33c321-xds110-error-cs_dap_0-error-error--590-0x0-no-dfu-mode/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/LP-MSPM33C321A" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;LP-MSPM33C321A&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt;  &lt;a href="https://www.ti.com/tool/CCSTUDIO" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;CCSTUDIO&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;LP-MSPM33C321A / serial-number M3010001&lt;/p&gt;
&lt;p&gt;For the first use in CCStudio (21.0.0.14_1.12.0 on win11) tries to update the firmware without success:&lt;/p&gt;
&lt;p&gt;&amp;quot;The XDS110 failed to switch into the DFU programming mode.&amp;quot;&lt;/p&gt;
&lt;p&gt;I tried to update by xdsdfu- but same result. I can&amp;#39;t change into DFU-mode.&lt;br&gt;After xdsdfu -m there is no change to DFU-mode, always runtime-mode&lt;/p&gt;
&lt;p&gt;Following xdsdfu -e results in: Found 0 devices&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Dietmar&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>MSPM0C1104: Will I run into problems if I have the supply voltage change when using the MSPM0C1104</title><link>https://e2e.ti.com/thread/1669867?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 12:46:29 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:8a6119e2-b4d3-4c54-85b1-f067a40ce347</guid><dc:creator>Parker Bondi</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669867?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669867/mspm0c1104-will-i-run-into-problems-if-i-have-the-supply-voltage-change-when-using-the-mspm0c1104/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/MSPM0C1104" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;MSPM0C1104&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Hello TI Support,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am working with the MSPM0C1104S8YCJR and have connected it via I2C to my battery management IC (BQ25120AYFPR). The BMIC provides power to the entire system from it&amp;#39;s switching supply which on power up is defaulted to 1.8V. I would like to send a command on startup to this IC to change the voltage of this rail to 2.5V and then operate in a typical loop fashion from there.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When I setup my syscfg file I have had success with setting the VDD to 1.8V.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/7484.Screenshot_5F00_12.png" alt="Screenshot_12.png" data-temp-id="Screenshot_12.png-109106"&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But I am constantly having issues where the device seems to be &amp;quot;bricked&amp;quot; and I have to go to the MSPM0_Factory_Reset_Tool again and again.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I wouldn&amp;#39;t say that operating at 2.5V is causing the bricking. It is tough to pin down the exact sequence of events that cause this and I&amp;#39;m wondering if someone knows for certain that this is causing the issue or if it is something else I am doing. It is a problem for me because it is making my firmware development timeline extend beyond my deadline.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM263PX-RESTRICTED-SECURITY: MPU_firewall</title><link>https://e2e.ti.com/thread/1669814?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 09:52:49 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:e088afcf-271c-41b7-b64f-a395384a3944</guid><dc:creator>Sravya Kalluri</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669814?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669814/am263px-restricted-security-mpu_firewall/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; AM263PX-RESTRICTED-SECURITY&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hi Team,&lt;/p&gt;
&lt;p&gt;From your response, it appears that you are concluding that SysConfig displays all available options for every SLV. However, this does not necessarily mean that there is a connection between them.&lt;/p&gt;
&lt;p&gt;For example, even though R5SS0_0 is listed as an initiator for R5SS0_CORE0_AXIS_SLV and we enable it, it does not have any practical effect. Similarly, restricting it also does not make any difference.&lt;/p&gt;
&lt;p&gt;If R5SS0_0 &amp;nbsp;wants to access the R5SS0_0 TCMA, it will do so using its local address, not through the AXIS slave interface.&lt;/p&gt;
&lt;p&gt;Could you clarify if our understanding is correct?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2612: AM261x issues configuring custom CiA402 PDOs using Beckhoff SSC Tool</title><link>https://e2e.ti.com/thread/1669770?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 08:30:54 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:cd7c3d1e-7f96-480d-8861-2af60d1d17ed</guid><dc:creator>Jim Tsai</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669770?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669770/am2612-am261x-issues-configuring-custom-cia402-pdos-using-beckhoff-ssc-tool/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2612" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2612&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p data-path-to-node="12"&gt;Hi Experts,&lt;/p&gt;
&lt;p data-path-to-node="13"&gt;I am working on a custom board featuring the AM2612 SoC and aiming to implement EtherCAT CiA 402 with custom PDO definitions. I am using the INDUSTRIAL-COMMUNICATIONS-SDK-AM261X (version 2026_00_00_06) and referring to the &lt;a href="https://software-dl.ti.com/processor-industrial-sw/esd/ind_comms_sdk/am261x/2026_00_00_06/docs/api_guide_am261x/EXAMPLES_INDUSTRIAL_COMMS_ETHERCAT_SUBDEVICE_BECKHOFF_SSC_DEMO.html#STEPS_TO_RUN_ECAT_BECKHOFF_SSC_DEMO"&gt;Official Documentation&lt;/a&gt; (&lt;em data-index-in-node="247" data-path-to-node="13"&gt;EtherCAT SubDevice Beckhoff SSC Demo&lt;/em&gt;).&lt;br&gt;&lt;br&gt;I have encountered two issues when using the Beckhoff SSC Tool (v1.5.3.0) to configure PDOs and generate the source code:&lt;br&gt;&lt;br&gt;1. Missing &lt;code data-index-in-node="11" data-path-to-node="15"&gt;TI_ESC_CiA402_8i3.xml&lt;/code&gt; in SDK release According to the SDK documentation and the &lt;code data-index-in-node="91" data-path-to-node="15"&gt;README.txt&lt;/code&gt; under &lt;code data-index-in-node="108" data-path-to-node="15"&gt;${SDK_INSTALL_PATH}/source/industrial_comms/ethercat_subdevice/beckhoff_stack/patch/am261x/&lt;/code&gt;, there should be two XML files:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p data-path-to-node="16,0,0"&gt;&lt;code data-index-in-node="0" data-path-to-node="16,0,0"&gt;TI_ESC_8i3.xml&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="16,1,0"&gt;&lt;code data-index-in-node="0" data-path-to-node="16,1,0"&gt;TI_ESC_CiA402_8i3.xml&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/7737.image.png" alt="image.png" width="602" height="184" data-temp-id="image.png-164716"&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/62676.image.png" alt="image.png" width="404" height="502" data-temp-id="image.png-113511"&gt;&lt;/p&gt;
&lt;p&gt;However, checking the actual directory in SDK v2026.00.00.06 reveals that &lt;code data-index-in-node="74" data-path-to-node="17"&gt;TI_ESC_CiA402_8i3.xml&lt;/code&gt; is missing (only &lt;code data-index-in-node="113" data-path-to-node="17"&gt;TI_ESC_8i3.xml&lt;/code&gt;, &lt;code data-index-in-node="129" data-path-to-node="17"&gt;tiescappl.xlsx&lt;/code&gt;, and &lt;code data-index-in-node="149" data-path-to-node="17"&gt;README.txt&lt;/code&gt; exist).&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/715113.image.png" alt="image.png" width="516" height="128" data-temp-id="image.png-49121"&gt;&lt;br&gt;Additionally, in the parent directory &lt;code data-index-in-node="206" data-path-to-node="17"&gt;${SDK_INSTALL_PATH}/source/industrial_comms/ethercat_subdevice/beckhoff_stack/patch/&lt;/code&gt;, there is a &lt;code data-index-in-node="303" data-path-to-node="17"&gt;TI_ECAT.patch&lt;/code&gt; file. Is there a separate patch file required specifically for CiA 402 implementation?&lt;br&gt;&lt;br&gt;2. Importing custom PDO Excel overrides &lt;code data-index-in-node="40" data-path-to-node="18"&gt;CiA402_SAMPLE_APPLICATION&lt;/code&gt; back to 0 To work around the missing XML file, I modified &lt;code data-index-in-node="124" data-path-to-node="18"&gt;TI_ESC_8i3.xml&lt;/code&gt; as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p data-path-to-node="19,0,0"&gt;Set &lt;code data-index-in-node="4" data-path-to-node="19,0,0"&gt;CiA402_SAMPLE_APPLICATION&lt;/code&gt; from &lt;code data-index-in-node="35" data-path-to-node="19,0,0"&gt;0&lt;/code&gt; to &lt;code data-index-in-node="40" data-path-to-node="19,0,0"&gt;1&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="19,1,0"&gt;Changed &lt;code data-index-in-node="8" data-path-to-node="19,1,0"&gt;APPLICATION_FILE&lt;/code&gt; from &lt;code data-index-in-node="30" data-path-to-node="19,1,0"&gt;tiescappl.h&lt;/code&gt; to &lt;code data-index-in-node="45" data-path-to-node="19,1,0"&gt;cia402appl.h&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="19,2,0"&gt;Removed &lt;code data-index-in-node="8" data-path-to-node="19,2,0"&gt;&amp;lt;ApplicationFile&amp;gt;tiescappl.xlsx&amp;lt;/ApplicationFile&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;When importing this modified XML into a new SSC project, &lt;code data-index-in-node="57" data-path-to-node="20"&gt;CiA402_SAMPLE_APPLICATION&lt;/code&gt; is correctly set to &lt;code data-index-in-node="103" data-path-to-node="20"&gt;1&lt;/code&gt; and &lt;code data-index-in-node="109" data-path-to-node="20"&gt;APPLICATION_FILE&lt;/code&gt; is set to &lt;code data-index-in-node="136" data-path-to-node="20"&gt;&amp;quot;cia402appl.h&amp;quot;&lt;/code&gt;. However, after importing a custom Excel file containing custom PDO configurations (where Device Profile is set to 402 and objects conform to CiA 402 specifications), SSC Tool automatically:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p data-path-to-node="21,0,0"&gt;Resets &lt;code data-index-in-node="7" data-path-to-node="21,0,0"&gt;CiA402_SAMPLE_APPLICATION&lt;/code&gt; back from &lt;code data-index-in-node="43" data-path-to-node="21,0,0"&gt;1&lt;/code&gt; to &lt;code data-index-in-node="48" data-path-to-node="21,0,0"&gt;0&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="21,1,0"&gt;Changes &lt;code data-index-in-node="8" data-path-to-node="21,1,0"&gt;APPLICATION_FILE&lt;/code&gt; to &lt;code data-index-in-node="28" data-path-to-node="21,1,0"&gt;&amp;lt;project_name&amp;gt;.h&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;p&gt;Below is the step-by-step workflow of how I configured the project using the Beckhoff SSC Tool:&lt;br&gt;&lt;br&gt;1. Step 1:&amp;nbsp;Created a new project using my modified &lt;code data-index-in-node="66" data-path-to-node="11,0,0"&gt;TI_ESC_8i3.xml&lt;/code&gt; configuration file.&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/new_5F00_project.png" alt="new_project.png" width="497" height="348" data-temp-id="new_project.png-73360"&gt;&lt;br&gt;2. Step 2&amp;nbsp;: Prior to importing the custom PDO Excel file, &lt;code data-index-in-node="79" data-path-to-node="11,1,0"&gt;CiA402_SAMPLE_APPLICATION&lt;/code&gt; is set to &lt;code data-index-in-node="115" data-path-to-node="11,1,0"&gt;1&lt;/code&gt;, and &lt;code data-index-in-node="122" data-path-to-node="11,1,0"&gt;APPLICATION_FILE&lt;/code&gt; is set to &lt;code data-index-in-node="149" data-path-to-node="11,1,0"&gt;#include &amp;quot;cia402appl.h&amp;quot;&lt;/code&gt;.&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/before_5F00_import_5F00_xlsx.png" alt="before_import_xlsx.png" width="495" height="347" data-temp-id="before_import_xlsx.png-70489"&gt;&lt;br&gt;3. Step 3: Saved the project configuration under the name &amp;quot;test&amp;quot;.&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/save_5F00_project_5F00_name_5F00_as_5F00_test.png" alt="save_project_name_as_test.png" width="482" height="337" data-temp-id="save_project_name_as_test.png-64463"&gt;&lt;br&gt;4. Step 4: Selected the custom PDO Excel configuration file (&lt;code data-index-in-node="76" data-path-to-node="11,3,0"&gt;test.xlsx&lt;/code&gt;).&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/import_5F00_xlsx.png" alt="import_xlsx.png" width="476" height="334" data-temp-id="import_xlsx.png-123760"&gt;&lt;br&gt;5. Step 5: Imported the custom PDO Excel configuration file.&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/import_5F00_xlsx2.png" alt="import_xlsx2.png" width="466" height="327" data-temp-id="import_xlsx2.png-56921"&gt;&lt;br&gt;6. Step 6: After the import completed, checking the &lt;strong data-index-in-node="68" data-path-to-node="11,5,0"&gt;Application&lt;/strong&gt; node in SSC Tool shows that &lt;code data-index-in-node="108" data-path-to-node="11,5,0"&gt;CiA402_SAMPLE_APPLICATION&lt;/code&gt; was automatically overridden to &lt;code data-index-in-node="166" data-path-to-node="11,5,0"&gt;0&lt;/code&gt;, and &lt;code data-index-in-node="173" data-path-to-node="11,5,0"&gt;APPLICATION_FILE&lt;/code&gt; was updated to &lt;code data-index-in-node="205" data-path-to-node="11,5,0"&gt;#include &amp;quot;test.h&amp;quot;&lt;/code&gt;.&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/after_5F00_import.png" alt="after_import.png" width="449" height="312" data-temp-id="after_import.png-65394"&gt;&lt;br&gt;7. Details of my custom PDO configuration in the Excel file, where &lt;code data-index-in-node="88" data-path-to-node="11,6,0"&gt;Device Profile&lt;/code&gt; is configured as &lt;code data-index-in-node="120" data-path-to-node="11,6,0"&gt;402&lt;/code&gt; with CiA 402-compliant object dictionary entries.&lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin-left:auto;margin-right:auto;" src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/obj_5F00_excel.png" alt="obj_excel.png" width="1058" height="518" data-temp-id="obj_excel.png-217569"&gt;&lt;/p&gt;
&lt;p data-path-to-node="22"&gt;Could you advise on the correct workflow to define custom PDOs via an Excel file without having SSC Tool force &lt;code data-index-in-node="111" data-path-to-node="22"&gt;CiA402_SAMPLE_APPLICATION&lt;/code&gt; back to &lt;code data-index-in-node="145" data-path-to-node="22"&gt;0&lt;/code&gt;?&lt;/p&gt;
&lt;p data-path-to-node="23"&gt;Environment Information:&lt;/p&gt;
&lt;ul data-path-to-node="24"&gt;
&lt;li&gt;
&lt;p data-path-to-node="24,0,0"&gt;SoC/Board: AM2612&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="24,1,0"&gt;SDK Version: &lt;code data-index-in-node="13" data-path-to-node="24,1,0"&gt;ind_comms_sdk_am261x_2026_00_00_06&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="24,2,0"&gt;Tool Version: Beckhoff SSC Tool v1.5.3.0&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p data-path-to-node="25"&gt;Thank you for your assistance.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM6442: Core to Core Communication</title><link>https://e2e.ti.com/thread/1669757?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 08:02:12 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:ef6fecc8-0934-4404-867f-588ff27584e6</guid><dc:creator>ganesh d</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669757?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669757/am6442-core-to-core-communication/rss?ContentTypeId=0</wfw:commentRss><description>
&lt;p&gt;HI Ti team,&lt;/p&gt;
&lt;p&gt;I am working on the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AM64x&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;platform with communication between&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;A53 Core0 (Linux)&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;and&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;R5F Core0 (MCU+ SDK)&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Currently, we are using the standard&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;RPMessage/RPMsg&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;framework for data transfer. However, our application requires higher throughput and lower latency for exchanging large amounts of data between the A53 and R5F.&lt;/p&gt;
&lt;p&gt;Our target is to achieve:&lt;/p&gt;
&lt;ul data-spread="false"&gt;
&lt;li&gt;&lt;strong&gt;Transfer size:&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;1 KB&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Transfer latency:&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;50 &amp;micro;s&amp;nbsp;&lt;/strong&gt;&amp;nbsp;(A53 -&amp;gt; R5F,&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;R5F-&amp;gt; A53&lt;/span&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Could you please advise:&lt;/p&gt;
&lt;ol start="1" data-spread="false"&gt;
&lt;li&gt;What is the recommended IPC framework for achieving the best performance between&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;A53 Core0 and R5F Core0&lt;/strong&gt;?&lt;/li&gt;
&lt;li&gt;Is&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;RPMessage/RPMsg&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;still the recommended approach, or should we use a&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;shared-memory (zero-copy)&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;mechanism with mailbox notifications?&lt;/li&gt;
&lt;li&gt;Does TI provide any reference implementation or example project for a zero-copy framework on AM64x?&lt;/li&gt;
&lt;li&gt;Are there any recommended optimizations (e.g., shared memory configuration, VirtIO/RPMsg tuning, mailbox usage, DMA) to improve throughput beyond the standard RPMsg implementation?&lt;/li&gt;
&lt;li&gt;Are there any benchmark results comparing standard RPMsg with a shared-memory/zero-copy implementation?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I am using SDK 09.02.01.10 RT-LINUX and for R5F MCU+SDK 10_01_00_32 Version and I want to optimize the IPC by adapting the new framework to be impacted in the same given SDK versions...Kindly advise on this..&lt;/p&gt;
&lt;p&gt;Any recommendations or reference examples would be greatly appreciated.&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt;Ganesh D&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2612-Q1: Some questions about sbl_ospi_multicore_elf</title><link>https://e2e.ti.com/thread/1669654?ContentTypeID=0</link><pubDate>Mon, 03 Aug 2026 02:57:11 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:12a9551b-ce65-43d6-a52f-b31a9738ddc1</guid><dc:creator>Shuqing Zhou</dc:creator><slash:comments>4</slash:comments><comments>https://e2e.ti.com/thread/1669654?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669654/am2612-q1-some-questions-about-sbl_ospi_multicore_elf/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2612-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2612-Q1&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;, &lt;a href="https://www.ti.com/tool/UNIFLASH" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;UNIFLASH&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hi team,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m asking this for my customer&lt;/p&gt;
&lt;p&gt;We&amp;#39;re developing the AM261 and refer to sbl_ospi_multicore_elf demo to develop the SBL.&lt;/p&gt;
&lt;p&gt;1.As we all know, RBL should boot the SBL to OCRAM from external flash firstly, where define the SBL address in external flash? is it can be placed in any address of external flash?&lt;/p&gt;
&lt;p&gt;2. is in makefile define the SBL run address in OCRAM? Is it can define in any address?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/7608.image.png" alt="image.png" width="635" height="176" data-temp-id="image.png-38316"&gt;&lt;/p&gt;
&lt;p&gt;3. what&amp;#39;s the protocol used when RBL boot SBL from external flash?&lt;/p&gt;
&lt;p&gt;is it must reset the flash before SBL boot APP from external flash even the protocol used in SBL is same as the RBL used?&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/22220.image.png" alt="image.png" width="698" height="96" data-temp-id="image.png-34132"&gt;&lt;/p&gt;
&lt;p&gt;4, where to define the app address in flash?&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/321246.image.png" alt="image.png" width="555" height="220" data-temp-id="image.png-66711"&gt;&lt;/p&gt;
&lt;p&gt;5. where to define the APP run address in OCRAM?&lt;/p&gt;
&lt;p&gt;6. In the TRM, it says RBL trys to boot the SBL from 0x00000, but why the FLASH address starts from 0x60000000&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/03878.image.png" alt="image.png" width="698" height="221" data-temp-id="image.png-51040"&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/827422.image.png" alt="image.png" width="786" height="78" data-temp-id="image.png-23785"&gt;&lt;/p&gt;
&lt;p&gt;BRs&lt;/p&gt;
&lt;p&gt;Shuqing&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>TMS570LC4357-EP: Intermittent issue with N2HET</title><link>https://e2e.ti.com/thread/1669564?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 19:43:19 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:8998f617-2b89-45c3-b1d3-dfa8c84db757</guid><dc:creator>Donald Lam</dc:creator><slash:comments>0</slash:comments><comments>https://e2e.ti.com/thread/1669564?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669564/tms570lc4357-ep-intermittent-issue-with-n2het/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/TMS570LC4357-EP" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;TMS570LC4357-EP&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;p style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 8pt;"&gt;Hello,&lt;br&gt;&lt;br&gt;We are currently developing software on a TMS570LC4357-EP and are running into an intermittent problem with the N2HET module that we have difficulty root causing. We were hoping for some assistance in understanding what could affect this peripheral, to help figure out which part of our system (either software or hardware) could be causing this and whether or not you&amp;rsquo;ve seen similar issues in the past.&lt;br&gt;&lt;br&gt;The context of the problem is this: &lt;br&gt;We use the N2HET peripherals as GPIO i.e. we disable the HTU and the HET controller. We also use a development probe (Lauterbach Trace32 probe) to debug our boards. When we issue resets from the probe to the HW board, the probe sends a command to the nRST pin to reset the MCU. The MCU remains powered on during this reset.&lt;br&gt;&lt;br&gt;The N2HET works as expected most of the time but intermittently fails, about 1 in 10000 times, after we issue the reset command. During the startup sequence of our bootstrap, the N2HET would be unresponsive, after putting peripherals out of reset. It&amp;#39;s as if the peripheral remains in a reset condition despite us using commands to get it out of reset. This issue remains until the next full electrical power cycle of the TMS570LC4357-EP.&lt;br&gt;&lt;br&gt;When the issue happens, both N2HET1 and N2HET2 have all their all registers (control, direction, input, outputs, etc.) zeroed out and no longer editable. Reads to the HET input pins fail as they always return 0x00000000.&lt;br&gt;&lt;br&gt;Resetting power domain pins (PDPWRDWNSET and PDPWRDWNCLR) makes no differences. Same with the VLCK CDDIS pins. We cannot seem to get the HET out of reset from that point onwards until we power cycle.&lt;br&gt;&lt;br&gt;Our start up sequence up until the point of failure is as follows:&lt;/p&gt;
&lt;ol style="margin-bottom:0cm;margin-top:0px;"&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;we erase core registers (R0 to R12)&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;we set FIQ, IRQ, Abort, Undefined and System modes,
&lt;ol style="list-style-type:lower-alpha;margin-bottom:0cm;margin-top:0px;"&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;FIQ = 10001&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;IRQ = 10010&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;Abort = 10111&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;Undef = 11011&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;System = 11111&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;We enable VFP Unit&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;We clear Floating point registers (D0-D15)&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;We set the stack pointers&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;We initialize the RAM memory
&lt;ol style="list-style-type:lower-alpha;margin-bottom:0cm;margin-top:0px;"&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;load and configure RAMCTRL,&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;enable global memory hardware initialization via MINITGCR&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;enable auto hardware initalization via MSIENA and wait for it to complete&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;disable global memory hardware initialization via MINITGCR&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;&amp;nbsp;we bring peripherals out of reset, by doing this:
&lt;ol style="list-style-type:lower-alpha;margin-bottom:0cm;margin-top:0px;"&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;forcing the primary system register (0xFFFFFF00) CLKCNTL bit 5 to 0 (to forcefully disable peripherals),&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 0cm 0px;"&gt;setting all the PSPWRDWNCLRx to 0xFFFFFFFF, for PCR1, PCR2 and PCR3, then&lt;/li&gt;
&lt;li style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 8pt 0px;"&gt;forcing the primary system register CLKCNTL bit 5 back to 1 (to forcefully re-enable peripherals),&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 8pt;"&gt;After this, the HET should have be brought out of reset and be operational but sometimes it isn&amp;rsquo;t.&lt;/p&gt;
&lt;p style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 8pt;"&gt;We initially suspected a VCLK issue (errata GCM#58 when VCLK &amp;lt;= HCLK/4) but this would be strange: we assume by default the ratio is VCLK/HCLK = 1/2 at startup, up until peripherals are out of reset. Also, our custom PLL configurations happen later in the startup it sets HCLK = 150MHz and keep VCLK1 and VCLK2 at a div ratio of 1/2.&lt;/p&gt;
&lt;p style="font-family:Aptos, sans-serif;font-size:12pt;line-height:115%;margin:0cm 0cm 8pt;"&gt;Any help or other theories on what could be affecting the system would be appreciated. Attached are the register snapshots at start of operation, prior to and after reset and shortly after N2HET issue is encountered.&lt;br&gt;&lt;br&gt;&lt;a href="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/2112.Collected-register-values.zip"&gt;e2e.ti.com/.../2112.Collected-register-values.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2631-Q1: AM263x Sysconfig: Need to disable Clock module.</title><link>https://e2e.ti.com/thread/1669555?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 18:30:03 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:64763d27-c2ee-4432-a653-23f5595437d5</guid><dc:creator>Eugene K</dc:creator><slash:comments>2</slash:comments><comments>https://e2e.ti.com/thread/1669555?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669555/am2631-q1-am263x-sysconfig-need-to-disable-clock-module/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2631-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2631-Q1&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;SDK states that Clock module is always enabled with any other module. Not quite sure why is there such a constraint. I want to use SDK drivers that do not need Clock and use Sysconfig to configure them.&amp;nbsp; I also do not need another interrupt that I have no use for.&lt;/p&gt;
&lt;p&gt;How do I disable auto creation of Clock module and reclaim one of RTI modules for my application and remove unneeded interupt?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br&gt;Eugene&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>TUSB9261DEMO: TUSB9261 binary</title><link>https://e2e.ti.com/thread/1669527?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 15:59:46 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:31d78108-05d1-4a07-9c88-9f2c357c0207</guid><dc:creator>Dimitrios Pressas</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669527?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669527/tusb9261demo-tusb9261-binary/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/TUSB9261DEMO" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;TUSB9261DEMO&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt; &lt;a href="https://www.ti.com/product/TUSB9261" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;TUSB9261&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;I&amp;#39;m trying to figure out which binary fits best for the TUSB9261 demo devkit. &lt;br&gt;&lt;br&gt;I&amp;#39;ve found the following:&lt;br&gt;&lt;br&gt;TUSB926x_FW_v1.06.hex&lt;br&gt;TUSB926x_FW_v1.06_SATA_NO_POLARITY_SWAP.hex&lt;br&gt;TUSB926x_FW_v1.06_SATA_POLARITY_SWAP_BOTH.hex&lt;br&gt;TUSB926x_FW_v1.06_SATA_POLARITY_SWAP_RX.hex&lt;br&gt;&lt;br&gt;Although the schematics indicate that it&amp;#39;s the TX signals that are swapped (pins 56 and 57).&amp;nbsp;&lt;br&gt;&lt;br&gt;Could you please clarify which is the right binary to use with the dev kit?&lt;br&gt;&lt;br&gt;Thank you in advance.&lt;br&gt;&lt;br&gt;Kind Regards,&lt;br&gt;Dimitrios Pressas&lt;br&gt;Hardware Design Engineer&lt;br&gt;Advanced Micro Peripherals ltd.&lt;br&gt;&lt;br&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>SK-AM62A-LP-PINMUX-CONFIGURATION: DM/WKUP R5F doesn't reach main</title><link>https://e2e.ti.com/thread/1669508?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 14:54:26 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:79c3d5c2-d534-49f3-be7e-e437d54a9a57</guid><dc:creator>Aakash Tegginamani</dc:creator><slash:comments>3</slash:comments><comments>https://e2e.ti.com/thread/1669508?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669508/sk-am62a-lp-pinmux-configuration-dm-wkup-r5f-doesn-t-reach-main/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; SK-AM62A-LP-PINMUX-CONFIGURATION&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/SK-AM62A-LP" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SK-AM62A-LP&lt;/a&gt;, &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I was developing a application with MPU to be configured.&lt;/p&gt;
&lt;p&gt;The DM/WKUP R5F core in SK-AM62A-LP does not reach main with MPU configurations but the MCU R5F does why so.&lt;/p&gt;
&lt;p&gt;I wanted to setup MPU regions once it reaches main. but i dont have the flexibilty to do that. even with minimul MPU configurations generated by sysconfig, I cannot understand why it fails if i dont want to use MPU or disable MPU.&lt;/p&gt;
&lt;p&gt;Even if i setup MPU regions in sysconfig they needs to be hard codded with start address.&lt;/p&gt;
&lt;p&gt;can you tell me why or is it possible to reach main without MPU being setup for DM/WKUP R5F core.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Aakash&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>MSPM0C1105: PD0 timers are consuming significantly higher current in Standby modes than expected.</title><link>https://e2e.ti.com/thread/1669507?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 14:54:05 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:8a7537ce-6aa5-4ae8-b318-f3b06e014d29</guid><dc:creator>Asish Mondal</dc:creator><slash:comments>2</slash:comments><comments>https://e2e.ti.com/thread/1669507?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669507/mspm0c1105-pd0-timers-are-consuming-significantly-higher-current-in-standby-modes-than-expected/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/MSPM0C1105" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;MSPM0C1105&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="isSelectedEnd"&gt;Hi Team,&lt;/p&gt;
&lt;p class="isSelectedEnd"&gt;I have some PD0 mode current issue regarding the operation of PD0 timers on the MSPM0C1105 in Standby modes.&lt;/p&gt;
&lt;ul data-spread="false"&gt;
&lt;li&gt;TIMG14 operates in &lt;strong&gt;Standby 1&lt;/strong&gt; mode but consumes approximately &lt;strong&gt;114 &amp;micro;A&lt;/strong&gt;, which is significantly higher than our application requirement.&lt;/li&gt;
&lt;li&gt;TIMG8 does not appear to operate in &lt;strong&gt;Standby 1&lt;/strong&gt; mode, although the datasheet indicates that it is supported.&lt;/li&gt;
&lt;li&gt;TIMG2, when running in &lt;strong&gt;Standby 0&lt;/strong&gt; mode, also consumes approximately &lt;strong&gt;100 &amp;micro;A&lt;/strong&gt;.&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/377116.image.png" alt="image.png" data-temp-id="image.png-324134"&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class="isSelectedEnd"&gt;Since TIMG2, TIMG8, and TIMG14 are all &lt;strong&gt;PD0 timers&lt;/strong&gt;, could you please help us understand why these timers consume significantly higher current while operating in Standby modes? Is there any additional configuration or recommended approach to reduce the standby current while keeping the timer running?&lt;/p&gt;
&lt;p class="isSelectedEnd"&gt;We would appreciate your guidance, as our application requires the standby current to remain below &lt;strong&gt;10 &amp;micro;A&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Thank you for your support.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>LMR51420: LMR51420YFD:Excessive EMI and power supply noise on custom MyIR board design</title><link>https://e2e.ti.com/thread/1669490?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 13:29:12 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:1cb03e3b-ade9-48ee-88df-55d3936367ec</guid><dc:creator>hassan taha</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669490?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669490/lmr51420-lmr51420yfd-excessive-emi-and-power-supply-noise-on-custom-myir-board-design/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/LMR51420" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;LMR51420&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;We are currently using the &lt;strong&gt;LMR51420YFD &lt;/strong&gt;converter to power a &lt;strong&gt;MYIR &lt;/strong&gt;based board system .&lt;/p&gt;
&lt;p&gt;However ,during testing , we are experiencing significant electromagnetic emissions (EMI) that threatens to fail the compliance tests.&lt;/p&gt;
&lt;p&gt;We need to implement hardware mitigation steps to suppress these emissions.&lt;/p&gt;
&lt;p&gt;Are there specific ,proven EMI filter recommendations tailored for the &lt;strong&gt;LMR51420YFD &lt;/strong&gt;to reduce these emissions?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you for your assistance.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Hassan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM263P4: Unable to debug sbl_ospi_multicore_elf project in CCS – Core0_0 runs continuously without hitting breakpoints</title><link>https://e2e.ti.com/thread/1669450?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 10:49:44 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:e95bc439-492c-479c-9231-5121f96f4041</guid><dc:creator>Gokul A Nair</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669450?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669450/am263p4-unable-to-debug-sbl_ospi_multicore_elf-project-in-ccs-core0_0-runs-continuously-without-hitting-breakpoints/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM263P4" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM263P4&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Hi Team,&lt;/p&gt;
&lt;div data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-hveid="CAIIAQgLEAA" data-sfc-root="ep" data-sfc-cp=""&gt;I am having trouble debugging the Secondary Bootloader (SBL) project on my AM263Px Control Card.&lt;!--TgQPHd|||[]--&gt;&lt;/div&gt;
&lt;ul data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-hveid="CAIIAQgMEAA" data-ved="2ahUKEwitlrCg3vyVAxUM7jgGHXl1KMcQ-7AUeggIAggBCAwQAA" data-sfc-root="ep"&gt;
&lt;li data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 12px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sae="" data-complete="true" data-hveid="CAIIAQgMEAE" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;strong data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 700; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;SDK Version:&lt;!--TgQPHd|||[]--&gt;&lt;/strong&gt; mcu_plus_sdk_am263px_26_00_00_06&lt;!--TgQPHd|||[]--&gt;&lt;/span&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/li&gt;
&lt;li data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 12px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sae="" data-complete="true" data-hveid="CAIIAQgMEAE" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;strong&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;CCS Version: &lt;/span&gt;&lt;/strong&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;20.5.0.28__1.11.0&lt;/span&gt;&lt;strong&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 12px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sae="" data-complete="true" data-hveid="CAIIAQgMEAI" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;strong data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 700; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;Project:&lt;!--TgQPHd|||[]--&gt;&lt;/strong&gt; &lt;code dir="ltr" data-copy-service-computed-style="font-family: monospace; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1px solid rgb(44, 46, 53);" data-sae="" data-complete="true" data-sfc-root="ep"&gt;sbl_ospi_multicore_elf&lt;!--TgQPHd|||[]--&gt;&lt;/code&gt; (imported from SDK)&lt;!--TgQPHd|||[]--&gt;&lt;/span&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/li&gt;
&lt;li data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 12px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sae="" data-complete="true" data-hveid="CAIIAQgMEAM" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;strong data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 700; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;Boot Mode:&lt;!--TgQPHd|||[]--&gt;&lt;/strong&gt; OSPI Boot Mode&lt;!--TgQPHd|||[]--&gt;&lt;/span&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/li&gt;
&lt;li data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 12px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sae="" data-complete="true" data-hveid="CAIIAQgMEAQ" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;strong data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 700; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;Hardware Setup:&lt;!--TgQPHd|||[]--&gt;&lt;/strong&gt; AM263Px Control Card debug port connected to PC serial port for flashing and debugging.&lt;!--TgQPHd|||[]--&gt;&lt;/span&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;!--TgQPHd|||[]--&gt;
&lt;div data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-hveid="CAIIAQgNEAA" data-sfc-root="ep" data-sfc-cp=""&gt;
&lt;div data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-hveid="CAIIAQgNEAA" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;strong data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 700; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;Issue:&lt;!--TgQPHd|||[]--&gt;&lt;/strong&gt;&lt;br data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-sfc-root="ep"&gt;When I use the &amp;#39;Debug Project&amp;#39; option in Code Composer Studio (CCS), Core0_0 starts running continuously. It does not hit any breakpoints, including the ones set in the &lt;code dir="ltr" data-copy-service-computed-style="font-family: monospace; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1px solid rgb(44, 46, 53);" data-sae="" data-complete="true" data-sfc-root="ep"&gt;main()&lt;!--TgQPHd|||[]--&gt;&lt;/code&gt; function.&lt;!--TgQPHd|||[]--&gt;&lt;/div&gt;
&lt;div data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-processed="true" data-hveid="CAIIAQgOEAA" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;strong data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 700; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;Notes:&lt;!--TgQPHd|||[]--&gt;&lt;/strong&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/div&gt;
&lt;ol data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-sfc-root="ep"&gt;
&lt;li data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 12px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sae="" data-complete="true" data-hveid="CAIIAQgPEAA" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;I am successfully able to flash and debug standard application projects using this setup. The issue is strictly isolated to this SBL project.&lt;!--TgQPHd|||[]--&gt;&lt;/span&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/li&gt;
&lt;li data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 12px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sae="" data-complete="true" data-hveid="CAIIAQgPEAE" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;span data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;I am unsure if using &amp;quot;Debug Project&amp;quot; in OSPI boot mode is the correct procedure for debugging the SBL itself.&lt;!--TgQPHd|||[]--&gt;&lt;/span&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;!--TgQPHd|||[]--&gt;
&lt;div data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-hveid="CAIIAQgQEAA" data-sfc-root="ep" data-sfc-cp=""&gt;Could you please guide me on the correct sequence to debug the SBL project? Any help to resolve the breakpoint issue would be highly appreciated.&lt;!--TgQPHd|||[]--&gt;&lt;/div&gt;
&lt;div data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-processed="true" data-complete="true" data-hveid="CAIIAQgREAA" data-sfc-root="ep" data-sfc-cp=""&gt;Thank you!&lt;!--TgQPHd|||[]--&gt;&lt;/div&gt;
&lt;div data-copy-service-computed-style="font-family: &amp;quot;Google Sans&amp;quot;, Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(230, 232, 240);" data-sfc-inited="2" data-processed="true" data-complete="true" data-sfc-root="ep" data-sfc-cp=""&gt;&lt;!--TgQPHd|||[]--&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[FAQ] AM2611-Q1: How to erase flash from CCS Flash Plugin</title><link>https://e2e.ti.com/thread/1669325?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 05:45:28 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:e7f360d0-b84d-4aa3-a63e-76752f7ab64b</guid><dc:creator>Aswin Sankar</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669325?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669325/faq-am2611-q1-how-to-erase-flash-from-ccs-flash-plugin/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2611-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2611-Q1&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/UNIFLASH" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;UNIFLASH&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;How can I erase external flash via CCS Flash plugin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[FAQ] AM2611-Q1: How to enable VLAN in LwIP</title><link>https://e2e.ti.com/thread/1669318?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 05:31:30 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:763ce5c1-e12a-435e-a551-5f04c4f10f25</guid><dc:creator>Aswin Sankar</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669318?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669318/faq-am2611-q1-how-to-enable-vlan-in-lwip/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2611-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2611-Q1&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I want to enable VLAN in LwIP. The LwIP stack should untag VLAN tagged packets and provide it to the application.&lt;/p&gt;
&lt;p&gt;While egress, the LwIP should tag the packet and provide it to hardware. How can this be done?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>MSPM0G3519: CRC16 not working for mspm0</title><link>https://e2e.ti.com/thread/1669314?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 05:23:40 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:c5a48312-4b11-4457-b1be-332544bc5002</guid><dc:creator>Abayomi Babatola</dc:creator><slash:comments>3</slash:comments><comments>https://e2e.ti.com/thread/1669314?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669314/mspm0g3519-crc16-not-working-for-mspm0/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/MSPM0G3519" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;MSPM0G3519&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt;  &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;,&lt;/p&gt;&lt;p&gt;Hello,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For a project that needs CRC16 calculation, I have tried to get the microcontroller CRC peripheral to do the calculation but it does not work.&lt;/p&gt;
&lt;p&gt;I have already tried the CRC32 on the microcontroller and it works just fine.&lt;/p&gt;
&lt;p&gt;What could be the problem or is there a sample CRC16 project that I could use as a guide.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2612: Pin delay for AM2612 ZNC</title><link>https://e2e.ti.com/thread/1669287?ContentTypeID=0</link><pubDate>Fri, 31 Jul 2026 03:12:15 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:670f11c5-92cb-4ee6-8962-f1a98dcfb9f5</guid><dc:creator>Sophie Chen(DLP)</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669287?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669287/am2612-pin-delay-for-am2612-znc/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2612" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2612&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Hi Team,&lt;/p&gt;
&lt;p&gt;Seyond is asking for the pin delay table for the AM2312 ANC package. Could we provide such table for them for layout?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also I notice that we state the trace mismatch on the datasheet. Do this parameter contains the pin delay? And they only need to pay attention to the PCB trace? &lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/afdc07d7_2D00_d26a_2D00_4604_2D00_9d0c_2D00_6c44c36c4a48.png" alt="afdc07d7-d26a-4604-9d0c-6c44c36c4a48.png" width="611" height="237" data-temp-id="afdc07d7-d26a-4604-9d0c-6c44c36c4a48.png-48956"&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>MSPM0L1306: MSPM0L1306: Simultaneous LIN break-threshold AND UART framing-error detection</title><link>https://e2e.ti.com/thread/1669248?ContentTypeID=0</link><pubDate>Thu, 30 Jul 2026 23:34:34 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:d47d691f-d05d-46f8-9faf-81ac152f8b3b</guid><dc:creator>Zaigham Khawaja</dc:creator><slash:comments>5</slash:comments><comments>https://e2e.ti.com/thread/1669248?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669248/mspm0l1306-mspm0l1306-simultaneous-lin-break-threshold-and-uart-framing-error-detection/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/MSPM0L1306" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;MSPM0L1306&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt;  &lt;a href="https://www.ti.com/product/MSPM0G3507" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;MSPM0G3507&lt;/a&gt;&lt;/p&gt;&lt;p&gt;For the MSPM0L1306,&lt;br&gt;Framing-error detection is required for LIN conformance, including framing errors in the sync, PID, data, and checksum fields.&lt;br&gt;But the TRM states: &amp;quot;&lt;strong&gt;Framing errors and break conditions are not set when LIN mode is enabled.&lt;/strong&gt;&amp;quot;&lt;br&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/2308.image.png" alt="image.png" width="675" height="240" data-temp-id="image.png-162228"&gt;&lt;br&gt;For LIN break-threshold detection, it must be operated in LIN Mode, utilizing LINCNT, LINC0, and the following LINCTL settings, which stops the framing-error detection as the side-effect.&lt;/p&gt;
&lt;p&gt;Newer MSPM0L devices (MSPM0L211x/122x) come with UNICOMM-UART which has an additional setting &lt;code&gt;LINCTL.EN_FRM_ERR&lt;/code&gt;, allowing framing-error reporting during LIN operation:&lt;br&gt;&lt;br&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/016878761.image.png" alt="image.png" width="741" height="382" data-temp-id="image.png-156162"&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;But the &lt;strong&gt;MSPM0L1306 &lt;/strong&gt;UART does not provide this field:&lt;br&gt;&lt;img src="https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/908/7288.image.png" alt="image.png" width="708" height="562" data-temp-id="image.png-162646"&gt;&lt;br&gt;&lt;br&gt;So,&lt;br&gt;How can framing-errors be detected on the MSPM0L1306 while using the LIN counter for break-threshold detection?&lt;br&gt;&lt;br&gt;If simultaneous operation is not supported, what is TI&amp;rsquo;s recommended implementation for meeting both requirements?&lt;br&gt;&lt;br&gt;1. Break detection with an 11-Tbit threshold&lt;br&gt;2. Framing-error detection for LIN Conformance Tests&lt;br&gt;&lt;br&gt;Thanks in advance,&lt;br&gt;Zaigham&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM6422: sciclient</title><link>https://e2e.ti.com/thread/1669222?ContentTypeID=0</link><pubDate>Thu, 30 Jul 2026 18:21:35 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:f30de82c-21c9-4aa1-a0bd-89a335f8ea26</guid><dc:creator>MICHAEL AIELLO</dc:creator><slash:comments>2</slash:comments><comments>https://e2e.ti.com/thread/1669222?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669222/am6422-sciclient/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM6422" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM6422&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;DEVICE: AM64&lt;/p&gt;
&lt;p&gt;OS: Freertos&lt;/p&gt;
&lt;p&gt;COMPONENT: CMPEVT_INTRTR0 (interrupt router)&lt;/p&gt;
&lt;p&gt;Need information on how to create an interrupt mapping for connection of CPSW0_CPTS_COMP_0 to&amp;nbsp; interrupt controller (VIM) for R5FSS0_CORE0,&lt;/p&gt;
&lt;p&gt;According to the documentation source inputs for CMPEVENT_INTROUTER_OUTP_16 trough 23 are available.&lt;/p&gt;
&lt;p&gt;Insufficient information on how to set this up using SciClient interface.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2612: AM2612 / AM2634: High temperature observation (&gt;50°C) during idle/low-load states and request for thermal mitigation strategies</title><link>https://e2e.ti.com/thread/1669217?ContentTypeID=0</link><pubDate>Thu, 30 Jul 2026 17:44:45 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:6950e0f2-26bb-49ab-a04c-68696ab42208</guid><dc:creator>Jack</dc:creator><slash:comments>1</slash:comments><comments>https://e2e.ti.com/thread/1669217?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669217/am2612-am2612-am2634-high-temperature-observation-50-c-during-idle-low-load-states-and-request-for-thermal-mitigation-strategies/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2612" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2612&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt;  &lt;a href="https://www.ti.com/product/AM2634" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2634&lt;/a&gt;, &lt;a href="https://www.ti.com/tool/SYSCONFIG" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;SYSCONFIG&lt;/a&gt;&lt;/p&gt;&lt;p data-path-to-node="3"&gt;Hi TI Team,&lt;/p&gt;
&lt;p data-path-to-node="4"&gt;Our robotics customers are currently evaluating the AM2612 (Dual-core R5F) and AM2634 processors for their upcoming projects. Recently, an issue has been raised regarding the operating temperature.&lt;/p&gt;
&lt;p data-path-to-node="5"&gt;During their tests, they observed that the MCU surface temperature exceeds 50&amp;deg;C even in idle or low-load states. In comparison, they have tested a competitor&amp;#39;s MCU (NXP i.MX RT1180) under similar conditions, which operates in the 30&amp;deg;C range. This has raised concerns regarding thermal management for the AM26x devices.&lt;/p&gt;
&lt;p data-path-to-node="6"&gt;To address the customers&amp;#39; concerns, we would like to request support on the following points:&lt;/p&gt;
&lt;ol start="1" data-path-to-node="7"&gt;
&lt;li&gt;
&lt;p data-path-to-node="7,0,0"&gt;&lt;strong data-index-in-node="0" data-path-to-node="7,0,0"&gt;Expected Thermal Profile:&lt;/strong&gt; What is the normal or expected operating temperature range for the AM2612 and AM2634 during idle or light-load conditions?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="7,1,0"&gt;&lt;strong data-index-in-node="0" data-path-to-node="7,1,0"&gt;Software / Clock Management:&lt;/strong&gt; Is it possible to reduce system power consumption (and consequently heat dissipation) by disabling the clocks or power domains of unused subsystems while maintaining full clock speed on the active R5F cores? If so, could you provide guidance or examples on how to properly configure this?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="7,2,0"&gt;&lt;strong data-index-in-node="0" data-path-to-node="7,2,0"&gt;Thermal Design Guidance:&lt;/strong&gt; Could you share comprehensive Thermal Design Guidelines for these devices? We are specifically looking for both hardware (PCB layout, thermal vias, mechanical heat dissipation) and software strategies to effectively lower the operating temperature.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p data-path-to-node="8"&gt;Thank you in advance for your support.&lt;/p&gt;
&lt;p data-path-to-node="9"&gt;Best regards,&lt;br&gt;Jack&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2754-Q1: AM275x USB Stack</title><link>https://e2e.ti.com/thread/1669208?ContentTypeID=0</link><pubDate>Thu, 30 Jul 2026 17:06:30 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:ec4f63c6-01c4-422f-9d0c-03dad5176700</guid><dc:creator>Lippold Haken</dc:creator><slash:comments>2</slash:comments><comments>https://e2e.ti.com/thread/1669208?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669208/am2754-q1-am275x-usb-stack/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2754-Q1" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2754-Q1&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Hi!&amp;nbsp; We are writing ARM and C7x code and running it on the AM275x development board. We are also&amp;nbsp; in the process of producing our own board design using the AM27542AF, for use in our future products.&lt;/p&gt;
&lt;p&gt;I am looking for the AM275x USB software package; I have seen reference to it in many places, but cannot locate the package itself.&amp;nbsp; What company supplies this package?&amp;nbsp; I am looking for software including the USB controller driver, third-party USB stack (if available), AM275x porting layer, documentation, and example projects for FreeRTOS SDK 12.00.00.22.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;br&gt;Lippold Haken / Haken Audio / www.HakenAudio.com&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2434: Unable to flash bootlader at AM324X-LP</title><link>https://e2e.ti.com/thread/1669183?ContentTypeID=0</link><pubDate>Thu, 30 Jul 2026 15:15:06 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:bafe0594-241a-48cc-91a7-9f4b499928bc</guid><dc:creator>Sergej Sergeyuk</dc:creator><slash:comments>4</slash:comments><comments>https://e2e.ti.com/thread/1669183?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669183/am2434-unable-to-flash-bootlader-at-am324x-lp/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2434" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2434&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt; &lt;a href="https://www.ti.com/tool/UNIFLASH" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;UNIFLASH&lt;/a&gt;&lt;/p&gt;&lt;p&gt;We&amp;#39;re looking for upgrade our legacy C6424 based HW for a new AM243x platform.&lt;/p&gt;
&lt;p&gt;My setup is: AM324X-LP connected to Win10 + ccs2100 + mcu_plus_sdk_am243x_12_00_00_27 + ind_comms_sdk_am243x_2026_00_00_06 + motor_control_sdk_am243x_09_02_00_12&lt;/p&gt;
&lt;p&gt;AM324X-LP boot mode: UART. PC can receive sequence of &amp;quot;c&amp;quot; at COM4 at 115200&lt;/p&gt;
&lt;p&gt;I&amp;#39;m trying to flash the pre-built version of the &amp;quot;sbl_null.release.hs_fs.tiimage&amp;quot; via &amp;quot;sbl_uart_uniflash.release.hs_fs.tiimage&amp;quot; as example.&lt;/p&gt;
&lt;p&gt;CMD: python uart_uniflash.py -p COM4 --cfg=sbl_prebuilt/am243x-lp/default_sbl_null.cfg&lt;/p&gt;
&lt;p&gt;CFG:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;--flash-writer=sbl_prebuilt/am243x-lp/sbl_uart_uniflash.release.hs_fs.tiimage&lt;br&gt;--file=sbl_prebuilt/am243x-lp/sbl_null.release.hs_fs.tiimage --operation=flash --flash-offset=0x0&lt;/p&gt;
&lt;p&gt;Problem:&lt;/p&gt;
&lt;p&gt;uart_uniflash.py successfully sending the sbl_uart_uniflash to device but then communication stopped. My assumption is the control has to be given to sbl_uart_uniflash code and it should continue with the reading from COM and flash received data. But there&amp;#39;s no such communication. Error message:&lt;/p&gt;
&lt;p&gt;C:\ti\mcu_plus_sdk_am243x_12_00_00_27\tools\boot&amp;gt;python uart_uniflash.py -p COM4 --cfg=sbl_prebuilt/am243x-lp/default_sbl_null.cfg&lt;br&gt;Parsing config file ...&lt;br&gt;Parsing config file ... SUCCESS. Found 2 command(s) !!!&lt;br&gt;Executing command 1 of 2 ...&lt;br&gt;Found flash writer ... sending sbl_prebuilt/am243x-lp/sbl_uart_uniflash.release.hs_fs.tiimage&lt;br&gt;Sent flashwriter sbl_prebuilt/am243x-lp/sbl_uart_uniflash.release.hs_fs.tiimage of size 308909 bytes in 27.84s.&lt;br&gt;Executing command 2 of 2 ...&lt;br&gt;Command arguments : --file=sbl_prebuilt/am243x-lp/sbl_null.release.hs_fs.tiimage --operation=flash --flash-offset=0x0&lt;br&gt;Sending sbl_prebuilt/am243x-lp/sbl_null.release.hs_fs.tiimage: &amp;nbsp; 0%| &amp;nbsp;| 0/282197 [00:00&amp;lt;?, ?bytes/s]&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;1&amp;#39;&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&amp;#39;&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&amp;#39;&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&amp;#39;&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&amp;#39;&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&amp;#39;&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&amp;#39;&lt;br&gt;send error: expected NAK, CRC, EOT or CAN; got b&amp;#39;0&amp;#39;&lt;br&gt;send error: error_count reached 10, aborting. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Sending sbl_prebuilt/am243x-lp/sbl_null.release.hs_fs.tiimage: &amp;nbsp; 0%| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | 2/282197 [02:17&amp;lt;10808:27:50, 137.89s/bytes]&amp;nbsp;&lt;br&gt;[ERROR] XMODEM send failed, no response OR incorrect response from EVM OR cancelled by user,&lt;br&gt;Power cycle EVM and run this script again !!!&lt;/p&gt;
&lt;p&gt;COM port stays connected at WIN10 and I still can see the &amp;quot;c&amp;quot; stream immediately after of error described above.&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AM2434: AM2434: EtherCAT FWHAL interrupts never fire when registered at init, work when re-registered later</title><link>https://e2e.ti.com/thread/1669084?ContentTypeID=0</link><pubDate>Thu, 30 Jul 2026 11:16:31 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:1cd9321b-1c4a-445b-a40c-424b6c3ff191</guid><dc:creator>Tal Shvartzberg</dc:creator><slash:comments>0</slash:comments><comments>https://e2e.ti.com/thread/1669084?ContentTypeID=0</comments><wfw:commentRss>https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1669084/am2434-am2434-ethercat-fwhal-interrupts-never-fire-when-registered-at-init-work-when-re-registered-later/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Part Number:&lt;/b&gt; &lt;a href="https://www.ti.com/product/AM2434" class="internal-link folder product" title="Link to Product Folder" target="_blank"&gt;AM2434&lt;/a&gt;&lt;br /&gt;&lt;b&gt;Other Parts Discussed in Thread:&lt;/b&gt;  &lt;a href="https://www.ti.com/tool/LP-AM243" class="internal-link folder tool" title="Link to Tool Folder" target="_blank"&gt;LP-AM243&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hardware and software: LP-AM243 (AM2434 ALX), ICSSG1, Industrial Communications SDK 2026.00.00.06 (prebuilt ethercat_subdevice_icss_fwhal library), MCU+ SDK 12.00.00.26, R5F0-0 FreeRTOS. &lt;br&gt;We run a third-party EtherCAT slave stack (SOES) on top of the EtherCAT FWHAL (tiescbsp), not the Beckhoff SSC.&lt;/p&gt;
&lt;p&gt;The port works end to end: the ESC firmware boots, masters scan the slave, it reaches OP in DC-Synchron at 1 kHz, mailbox CoE and FoE work, and it has run multi-day soak tests. &lt;br&gt;The question is only about interrupt delivery.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Symptom:&lt;br&gt;&lt;/strong&gt;We call bsp_init followed by bsp_start_esc_isr, the same placement your SSC integration uses in tieschw.c HW_EscInit. With that, EcatIsr, Sync0Isr and Sync1Isr are never invoked. Not once, no HOST_AL_EVENT, no SYNC events, while the ESC is fully functional through polling.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What we verified:&lt;/strong&gt;&lt;br&gt;PRUICSS_intcInit ran with the tiesc_pruss_intc_mapping.h data. PRUICSS_registerIrqHandler succeeded and HwiP_construct enables the VIM lines, we confirmed the enables. Manually injecting the system events into the INTC invokes the registered handlers, so the INTC to VIM to handler chain is healthy. We also handle the stale-latch behavior: we hold the AL event mask at zero through the whole init so no event can latch before handlers exist, since we observed the PRU firmware will not re-raise an event that is still latched uncleared in the INTC.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The part we cannot explain:&lt;br&gt;&lt;/strong&gt;If we call PRUICSS_registerIrqHandler again for the same event outputs (evtOut 3, 1, 2) and the same interrupt numbers (interrupt_offset plus 3, 1, 2) with our own thin handlers AFTER our stack initialization completes, and only then open the AL event mask, delivery is perfect: PDI and SYNC0 at exactly 1 kHz, stable for days.&amp;nbsp;The same registrations made during init, whether by bsp_start_esc_isr or by our own code at the same spot, stay dead. &lt;br&gt;So the difference is when the registration happens relative to something in the init sequence, not whose handler symbols are registered. Your SSC demo registers at init time and works, so the SSC init apparently does something between registration and cyclic operation that a third-party stack must replicate, and we would like to know what it is.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Questions:&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Does the EtherCAT PRU firmware or the FWHAL invalidate or depend on host ISR registrations made before some specific point in the bring-up (a firmware command, a register write, an INTC state)?&lt;/li&gt;
&lt;li&gt;Is there a prescribed ordering between bsp_init, firmware start, ISR registration and the first AL event mask write for non-SSC stacks?&lt;/li&gt;
&lt;li&gt;Is re-registering the evtOut handlers after stack init a supported pattern, or does it work by accident?&lt;/li&gt;
&lt;li&gt;What does the SSC initialization do after bsp_start_esc_isr that arms delivery, so we can do the equivalent?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;We link the prebuilt FWHAL library, which is built without ENABLE_PDI_TASK and ENABLE_SYNC_TASK, and our handler bodies run in FreeRTOS tasks woken from the callbacks.&lt;br&gt;&lt;br&gt;Happy to provide our init sequence or captures.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>