<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: FreeMaster Over CAN on interrupt fail to compile in polling mode in FreeMASTER</title>
    <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396440#M2203</link>
    <description>&lt;P&gt;Communication modes are mutually exclusive options. That's exactly what the error message means. &lt;BR /&gt;FreeMASTER Driver routine may require a significative processing time and those 3 settings try to help developers to balance the execution depending on use case as follows:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;FMSTR_POLL_DRIVEN - FreeMASTER routine is executed entirely in the FMSTR_Poll function - developers decides when it is called but has to make sure that it is invoked at such frequency that allows FreeMASTER to keep up with the communication speed&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;FMSTR_LONG_INTR - FreeMASTER routine is executed entirely in the FMSTR_CanIIsr function - deveopers forces the system to executed it by assigning a higher priority (I assume this one was used as it fits best in case of big number of interrupts)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;FMSTR_SHORT_INTR - is a mix of the previous two: the communication is happening in the interrupt handler (FMSTR_CanIsr), but the processing - in (FMSTR_Poll)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;I think what you want to try is the last one (combination of polling + interrupt). Still, while the interrupt may guarantee that the CAN frames will be read, the board may not reply on time if FMSTR_Poll is not invoked frequently enough (due to interrupts with higher priority). As a result - FreeMASTER desktop tool will show timeout errors.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The developer has to make&amp;nbsp;sure that the system can allocate sufficient time for FreeMASTER Driver routines in&amp;nbsp;compute intensive applications.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope it clarifies FreeMASTER's communication modes.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Jul 2026 13:46:55 GMT</pubDate>
    <dc:creator>iulian_stan</dc:creator>
    <dc:date>2026-07-17T13:46:55Z</dc:date>
    <item>
      <title>FreeMaster Over CAN on interrupt fail to compile in polling mode</title>
      <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396380#M2200</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to change those 3 mico for enabling polling mode from code generated from&amp;nbsp; "FreeMaster over CAN" and "s32k3xx_fm_over_can_s32ct"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FMSTR_SHORT_INTR&lt;/STRONG&gt;, &lt;STRONG&gt;FMSTR_POLL_DRIVEN&lt;/STRONG&gt;, and &lt;STRONG&gt;FMSTR_DEBUG_TX&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;but end with&amp;nbsp;compiling failed, reason is that transfer feature freemaster over can from&amp;nbsp;"s32k3xx_fm_over_can_s32ct"&amp;nbsp; reply on interrupt, but if motor control case using many irq like least 10khz fast task and bctu and hall , wagtch dog, freemaster received no response from controllewr k312, polling mode is necessary.&lt;/P&gt;&lt;P&gt;how to enable those 3 micros and open polling mode for&amp;nbsp;"s32k3xx_fm_over_can_s32ct"&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2026 10:31:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396380#M2200</guid>
      <dc:creator>millerhughes</dc:creator>
      <dc:date>2026-07-17T10:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: FreeMaster Over CAN on interrupt fail to compile in polling mode</title>
      <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396414#M2201</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/253767"&gt;@millerhughes&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;To enable Polling mode you need to update the following macros:&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;#define FMSTR_LONG_INTR    0
#define FMSTR_SHORT_INTR   0
#define FMSTR_POLL_DRIVEN  1&lt;/LI-CODE&gt;
&lt;P&gt;only one out of those 3 should be set to 1, overwise the code won't compile.&lt;/P&gt;
&lt;P&gt;Regarding &lt;STRONG&gt;FMSTR_DEBUG_TX&lt;/STRONG&gt;&amp;nbsp;- this is a debug macro that is meant to verify the TX line. Combined with previous definitions this one:&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;#define FMSTR_DEBUG_TX  1
&lt;/LI-CODE&gt;
&lt;P&gt;will instruct FreeMASTER Driver to continuously send a debug frame (note: this helps you inspecting the TX line and you won't be able to connect to the board using FreeMASTER tool&amp;nbsp;while this functionality is enabled).&lt;/P&gt;
&lt;P&gt;Could you share your compilation error logs ?&lt;/P&gt;
&lt;P data-unlink="true"&gt;As far as I know,&amp;nbsp;&lt;SPAN&gt;s32k3xx_fm_over_can_s32ct example is implemented by&amp;nbsp;&lt;/SPAN&gt;Model-Based Design Toolbox (MBDT)&lt;SPAN&gt;&amp;nbsp;team. If you develop your application using Simulink, it may require updating block configuration instead of manual code changes.&amp;nbsp;&lt;/SPAN&gt;In this case, MBDT developers can provide better assistance for your use case through the dedicated MBDT&lt;SPAN&gt;&amp;nbsp;&lt;A href="https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/bd-p/mbdt" target="_self"&gt;community&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2026 12:28:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396414#M2201</guid>
      <dc:creator>iulian_stan</dc:creator>
      <dc:date>2026-07-17T12:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: FreeMaster Over CAN on interrupt fail to compile in polling mode</title>
      <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396434#M2202</link>
      <description>&lt;P&gt;I did try before using same setting as you:&lt;/P&gt;&lt;P&gt;for example,&amp;nbsp; I changed&amp;nbsp;&lt;SPAN&gt;FMSTR_POLL_DRIVEN as 1 (was 0.as interrupt mode)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;// Select interrupt or poll-driven serial communication&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#define&lt;/SPAN&gt;&lt;SPAN&gt; FMSTR_LONG_INTR 1 &lt;/SPAN&gt;&lt;SPAN&gt;// Complete message processing in interrupt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#define&lt;/SPAN&gt;&lt;SPAN&gt; FMSTR_SHORT_INTR 0 &lt;/SPAN&gt;&lt;SPAN&gt;// &lt;/SPAN&gt;&lt;SPAN&gt;Queuing&lt;/SPAN&gt;&lt;SPAN&gt; done in interrupt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#define&lt;/SPAN&gt; &lt;SPAN&gt;FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;SPAN&gt; 1&lt;/SPAN&gt;&lt;SPAN&gt;/*0 */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;7 error: mainly because of&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;#if&lt;/SPAN&gt;&lt;SPAN&gt; (FMSTR_LONG_INTR &amp;amp;&amp;amp; (FMSTR_SHORT_INTR || &lt;/SPAN&gt;&lt;SPAN&gt;FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;SPAN&gt;)) || \&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(FMSTR_SHORT_INTR &amp;amp;&amp;amp; (FMSTR_LONG_INTR || &lt;/SPAN&gt;&lt;SPAN&gt;FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;SPAN&gt;)) || \&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; (FMSTR_LONG_INTR || FMSTR_SHORT_INTR)) || \&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;!(&lt;/SPAN&gt;&lt;SPAN&gt;FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;SPAN&gt; || FMSTR_LONG_INTR || FMSTR_SHORT_INTR)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/* mismatch in interrupt modes, only one can be selected */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#error&lt;/SPAN&gt;&lt;SPAN&gt; You have to enable exctly one of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;3 error happen above for compile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;../FMsrc/freemaster_private.h:326:2: error: #error You have to enable exctly one of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;326 | #error You have to enable exctly one of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| ^~~~~&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;../FMsrc/freemaster_private.h:326:2: error: #error You have to enable exctly one of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;326 | #error You have to enable exctly one of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| ^~~~~&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;../FMsrc/freemaster_private.h:326:2: error: #error You have to enable exctly one of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;326 | #error You have to enable exctly one of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| ^~~~~&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;one is not enough, but two even all also failed.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Jul 2026 13:14:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396434#M2202</guid>
      <dc:creator>millerhughes</dc:creator>
      <dc:date>2026-07-17T13:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: FreeMaster Over CAN on interrupt fail to compile in polling mode</title>
      <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396440#M2203</link>
      <description>&lt;P&gt;Communication modes are mutually exclusive options. That's exactly what the error message means. &lt;BR /&gt;FreeMASTER Driver routine may require a significative processing time and those 3 settings try to help developers to balance the execution depending on use case as follows:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;FMSTR_POLL_DRIVEN - FreeMASTER routine is executed entirely in the FMSTR_Poll function - developers decides when it is called but has to make sure that it is invoked at such frequency that allows FreeMASTER to keep up with the communication speed&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;FMSTR_LONG_INTR - FreeMASTER routine is executed entirely in the FMSTR_CanIIsr function - deveopers forces the system to executed it by assigning a higher priority (I assume this one was used as it fits best in case of big number of interrupts)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;FMSTR_SHORT_INTR - is a mix of the previous two: the communication is happening in the interrupt handler (FMSTR_CanIsr), but the processing - in (FMSTR_Poll)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;I think what you want to try is the last one (combination of polling + interrupt). Still, while the interrupt may guarantee that the CAN frames will be read, the board may not reply on time if FMSTR_Poll is not invoked frequently enough (due to interrupts with higher priority). As a result - FreeMASTER desktop tool will show timeout errors.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The developer has to make&amp;nbsp;sure that the system can allocate sufficient time for FreeMASTER Driver routines in&amp;nbsp;compute intensive applications.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope it clarifies FreeMASTER's communication modes.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2026 13:46:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396440#M2203</guid>
      <dc:creator>iulian_stan</dc:creator>
      <dc:date>2026-07-17T13:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: FreeMaster Over CAN on interrupt fail to compile in polling mode</title>
      <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396696#M2204</link>
      <description>&lt;P&gt;thanks for clarification, yes,&amp;nbsp;&lt;SPAN&gt;combination of polling + interrupt is my target.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;restate issue: target k312 fail to send response after freeamster running a while.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;now feedback is following:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;interrupt mode: freemaster working, issue shown above, FMSTR_LONG_INTR only&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;polling mode: compile,, freemaster not working ,&amp;nbsp; FMSTR_POLL_DRIVEN even if remove error message on&amp;nbsp;freemaster_private.h:326:2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;mixed: freemaster working, can compile&amp;nbsp; but traffic issue remain , all three of FMSTR_LONG_INTR or FMSTR_SHORT_INTR or FMSTR_POLL_DRIVEN set as 1 and removing&amp;nbsp;error message on&amp;nbsp;freemaster_private.h:326:2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;now I justify :Could be my CAN driver issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;which information do you need if your can provide further support?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2026 08:05:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396696#M2204</guid>
      <dc:creator>millerhughes</dc:creator>
      <dc:date>2026-07-20T08:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: FreeMaster Over CAN on interrupt fail to compile in polling mode</title>
      <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396847#M2208</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/253767"&gt;@millerhughes&lt;/a&gt;,&lt;/P&gt;
&lt;DIV&gt;
&lt;P&gt;I would try to troubleshoot the &lt;STRONG&gt;FMSTR_LONG_INTR&lt;/STRONG&gt; mode, considering it is the only mode that works, even if only for a short time. The things I would look into are:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Can you inspect the CAN bus with a logic analyzer and check whether the CAN messages are no longer being sent from the board, or if they are being sent but become corrupted?&lt;/LI&gt;
&lt;LI&gt;How many variables are you reading on the PC side? The number of variables is directly proportional to the amount of data exchanged between the PC tool and the board. If possible, I would start with a few variables and gradually increase the number to see when it breaks.&lt;/LI&gt;
&lt;LI&gt;Is the CAN instance used by any routines other than the FreeMASTER Driver?&lt;/LI&gt;
&lt;/OL&gt;
&lt;DIV&gt;
&lt;P&gt;Did you start with a MATLAB/Simulink model or an S32 Design Studio example application? Depending on the original source, the FreeMASTER CAN driver implementation may differ.&lt;/P&gt;
&lt;P&gt;If possible, please attach the source files (they should be named &lt;STRONG&gt;freemaster_s32_flexcan.h&lt;/STRONG&gt; and &lt;STRONG&gt;freemaster_s32_flexcan.c&lt;/STRONG&gt;).&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Jul 2026 14:56:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2396847#M2208</guid>
      <dc:creator>iulian_stan</dc:creator>
      <dc:date>2026-07-20T14:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: FreeMaster Over CAN on interrupt fail to compile in polling mode</title>
      <link>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2397196#M2213</link>
      <description>&lt;P&gt;1, I used peakcan view to monitor message flow,&lt;/P&gt;&lt;P&gt;yes,&amp;nbsp;&lt;SPAN&gt;CAN messages are no longer being sent from the board&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;when freeamster smoothly working, message flashing very fast; when freeamaster freeze, CAN message sent from S32k312minEVB stopped apparently&amp;nbsp; but message read from freemaster still visible and slow;&lt;/P&gt;&lt;P&gt;2, totally less 20 variables, but amount is much smaller than demon fm project&amp;nbsp;s32k312_mc_pmsm_2sh_s32ct.pmpx "s32k344_mc_pmsm_2sh_s32ct"&lt;/P&gt;&lt;P&gt;3.CAN instance solely used by freemaster;&lt;/P&gt;&lt;P&gt;you are right,&amp;nbsp; our BSW use RTD ,to implement FM over CAN, &amp;nbsp;flexcan_43 and flexcan_ipw&amp;nbsp; layer from&amp;nbsp;DEMON&amp;nbsp;s32k3xx_fm_over_can_s32ct MCAL driver are integrated. but still working with issue above.&lt;/P&gt;&lt;P&gt;by the way, due to CAN IP layer limit, our can driver can accept standard msg ID, so freeamster configue setting : send standard, receeive extension.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please find atatched 4 files I have, which are close to you.&lt;/P&gt;&lt;P&gt;do you need all CAN IP configure files? actually all 43/ipw configure same as demon&amp;nbsp;s32k3xx_fm_over_can_s32ct.&lt;/P&gt;&lt;P&gt;You can also directly email me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2026 10:17:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/FreeMASTER/FreeMaster-Over-CAN-on-interrupt-fail-to-compile-in-polling-mode/m-p/2397196#M2213</guid>
      <dc:creator>millerhughes</dc:creator>
      <dc:date>2026-07-21T10:17:05Z</dc:date>
    </item>
  </channel>
</rss>

