<?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>MQX Software Solutions中的主题 CAN source address destination address</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456549#M15327</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My CAN receiver has a SA of 0x1ff, in your horrible documentation you refer to as TX_identifier.&lt;/P&gt;&lt;P&gt;I can receive messages from five different CAN connections. According to what ever the data&lt;/P&gt;&lt;P&gt;may be I may need to reply to separate Destination addresses. I do have the software running&lt;/P&gt;&lt;P&gt;with a specific TX_identifier and a specific RX_identifier and their assigned mailbox number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Do I need a different mailbox for each address I need to reply to.&lt;/P&gt;&lt;P&gt;2) Is there a way to at will change the destination address I am trying to send a message to?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Sep 2015 18:27:59 GMT</pubDate>
    <dc:creator>davidsa</dc:creator>
    <dc:date>2015-09-16T18:27:59Z</dc:date>
    <item>
      <title>CAN source address destination address</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456549#M15327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My CAN receiver has a SA of 0x1ff, in your horrible documentation you refer to as TX_identifier.&lt;/P&gt;&lt;P&gt;I can receive messages from five different CAN connections. According to what ever the data&lt;/P&gt;&lt;P&gt;may be I may need to reply to separate Destination addresses. I do have the software running&lt;/P&gt;&lt;P&gt;with a specific TX_identifier and a specific RX_identifier and their assigned mailbox number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Do I need a different mailbox for each address I need to reply to.&lt;/P&gt;&lt;P&gt;2) Is there a way to at will change the destination address I am trying to send a message to?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 18:27:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456549#M15327</guid>
      <dc:creator>davidsa</dc:creator>
      <dc:date>2015-09-16T18:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: CAN source address destination address</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456550#M15328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you use a different mailbox for each address is a better solution to avoid conflict.&lt;/P&gt;&lt;P&gt;In freescale demo, there are two nodes, each node has a RX_identifier and TX_indentifier. So if you have five different CAN connections, you can define more nodes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#if NODE==1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RX_identifier = 0x123;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TX_identifier = 0x321;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RX_remote_identifier = 0x0F0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TX_remote_identifier = 0x00F;&lt;/P&gt;&lt;P&gt;#else if NODE ==2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RX_identifier = 0x321;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TX_identifier = 0x123;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RX_remote_identifier = 0x00F;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TX_remote_identifier = 0x0F0;&lt;/P&gt;&lt;P&gt;#else if NODE == 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 07:03:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456550#M15328</guid>
      <dc:creator>danielchen</dc:creator>
      <dc:date>2015-09-17T07:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: CAN source address destination address</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456551#M15329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the reply. So I would assume that each node would have its own&lt;/P&gt;&lt;P&gt;interrupt service routine and so on?&lt;/P&gt;&lt;P&gt;This of course would make the mask more difficult. For example if I receive a&lt;/P&gt;&lt;P&gt;message from CAN-ID 1ff and I need to reply to 1ff I cannot mask out 1ff so&lt;/P&gt;&lt;P&gt;I would be receiving my own message. How would I get around this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 12:00:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456551#M15329</guid>
      <dc:creator>davidsa</dc:creator>
      <dc:date>2015-09-17T12:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: CAN source address destination address</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456552#M15330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand your requirements correctly, you can let different ID enter different mailbox. you do not need to use mask bits&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Sep 2015 13:46:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/CAN-source-address-destination-address/m-p/456552#M15330</guid>
      <dc:creator>danielchen</dc:creator>
      <dc:date>2015-09-18T13:46:57Z</dc:date>
    </item>
  </channel>
</rss>

