<?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>i.MX Processors中的主题 Re: TJA1043TK Initialization in M4</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/TJA1043TK-Initialization-in-M4/m-p/1295601#M175806</link>
    <description>&lt;P&gt;Software wise this is proper only. There is hardware problem.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jun 2021 18:13:08 GMT</pubDate>
    <dc:creator>vinothkumars</dc:creator>
    <dc:date>2021-06-21T18:13:08Z</dc:date>
    <item>
      <title>TJA1043TK Initialization in M4</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/TJA1043TK-Initialization-in-M4/m-p/1294982#M175737</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working on&amp;nbsp;&lt;STRONG&gt;TJA1043TK&lt;/STRONG&gt; CAN initialization. Currently don't have GPIO expander and &lt;STRONG&gt;CAN_EN&lt;/STRONG&gt; and &lt;STRONG&gt;CAN_STBY&lt;/STRONG&gt; connected directly to the processor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vinothkumars_0-1624167366018.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/147507i89B8A0D51BCA62D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vinothkumars_0-1624167366018.png" alt="vinothkumars_0-1624167366018.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;vinothkumars_0-1624167366018.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FCAN0_EN connected with&amp;nbsp;GPT0_CAPTURE&lt;/P&gt;&lt;P&gt;FCAN_STB connected with&amp;nbsp;GPT0_COMPARE.&lt;/P&gt;&lt;P&gt;I have to initialize the&amp;nbsp;TJA1043TK . But, IRQ is not triggering to receive the message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check my configuration and let me know what I am missing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;pin_mux.h&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;/* GPT0_CAPTURE, FCAN0_EN */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_EN_GPIO LSIO__GPIO0 /*!&amp;lt; GPIO device name: LSIO__GPIO0 */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_EN_GPIO_PIN 15U /*!&amp;lt; LSIO__GPIO1 pin index: 15 */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_EN_PIN_NAME GPT0_CAPTURE /*!&amp;lt; Pin name */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_EN_PIN_FUNCTION_ID SC_P_GPT0_CAPTURE /*!&amp;lt; Pin function id */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_EN_LABEL "FCAN0_EN" /*!&amp;lt; Label */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_EN_NAME "FCAN0_EN" /*!&amp;lt; Identifier name */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_EN_DIRECTION kGPIO_DigitalOutput /*!&amp;lt; Direction */&lt;BR /&gt;&lt;BR /&gt;/* GPT0_COMPARE, FCAN0_STB */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_STB_GPIO LSIO__GPIO0 /*!&amp;lt; GPIO device name: LSIO__GPIO0 */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_STB_GPIO_PIN 16U /*!&amp;lt; LSIO__GPIO1 pin index: 16 */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_STB_PIN_NAME GPT0_COMPARE /*!&amp;lt; Pin name */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_STB_PIN_FUNCTION_ID SC_P_GPT0_COMPARE /*!&amp;lt; Pin function id */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_STB_LABEL "FCAN0_STB" /*!&amp;lt; Label */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_STB_NAME "FCAN0_STB" /*!&amp;lt; Identifier name */&lt;BR /&gt;#define BOARD_INITPINS_FCAN0_STB_DIRECTION kGPIO_DigitalOutput /*!&amp;lt; Direction */&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;pin_mux.c&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;err = sc_pad_set_all(ipc, BOARD_INITPINS_FCAN0_EN_PIN_FUNCTION_ID, 3U, SC_PAD_CONFIG_OUT_IN, SC_PAD_ISO_OFF, 0x61 ,SC_PAD_WAKEUP_OFF);&lt;BR /&gt;if (SC_ERR_NONE != err)&lt;BR /&gt;{&lt;BR /&gt;assert(false);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;err = sc_pad_set_all(ipc, BOARD_INITPINS_FCAN0_STB_PIN_FUNCTION_ID, 3U, SC_PAD_CONFIG_OUT_IN, SC_PAD_ISO_OFF, 0x61 ,SC_PAD_WAKEUP_OFF);&lt;BR /&gt;if (SC_ERR_NONE != err)&lt;BR /&gt;{&lt;BR /&gt;assert(false);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jun 2021 05:42:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/TJA1043TK-Initialization-in-M4/m-p/1294982#M175737</guid>
      <dc:creator>vinothkumars</dc:creator>
      <dc:date>2021-06-20T05:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: TJA1043TK Initialization in M4</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/TJA1043TK-Initialization-in-M4/m-p/1295601#M175806</link>
      <description>&lt;P&gt;Software wise this is proper only. There is hardware problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 18:13:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/TJA1043TK-Initialization-in-M4/m-p/1295601#M175806</guid>
      <dc:creator>vinothkumars</dc:creator>
      <dc:date>2021-06-21T18:13:08Z</dc:date>
    </item>
  </channel>
</rss>

