<?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: Question in  EVB9S12NE64UM in S12 / MagniV Microcontrollers</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128584#M945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;hi&lt;/DIV&gt;&lt;DIV&gt;thanks for reply&amp;nbsp; , but my question was about port A and B&amp;nbsp; , I tried port G , it is work , actually it is the only port working , I am asking about other ports , how can I make them work ???, is there any jumber setting of something like that ???&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;thanks again&lt;/DIV&gt;&lt;DIV&gt;Ah.Kh.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Mar 2006 15:27:23 GMT</pubDate>
    <dc:creator>eg</dc:creator>
    <dc:date>2006-03-12T15:27:23Z</dc:date>
    <item>
      <title>Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128582#M943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;hi&lt;/DIV&gt;&lt;DIV&gt;I am using the kit EVB9S12NE64UM , and I wonna to use port A &amp;amp; port B as a gereral I/O ports , when I tried to test these ports by led , I found that they always give one on all pins , even when I send zeros to them why?????&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;the second question is what is the actual voltage magnitude appeared on the port when it gives logic 1 ( 5 Volt or 3.3 Volt ) , and how can I change ????&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;plz , help , I &amp;nbsp;wonna to use these two ports separtly to control a graphic LCD&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;thanks&lt;/DIV&gt;&lt;DIV&gt;Ah.Kh.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Mar 2006 06:02:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128582#M943</guid>
      <dc:creator>eg</dc:creator>
      <dc:date>2006-03-12T06:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128583#M944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Should be easy to test outputs:&lt;BR /&gt;1:&amp;nbsp;Just don't forget to configure as output (eg.):&lt;BR /&gt;#define PTG0 0x01&lt;BR /&gt;#define LED_1 PTG0&lt;BR /&gt;&amp;nbsp;PTG&amp;nbsp; |= (LED_1);&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // prepare output high&lt;BR /&gt;&amp;nbsp;DDRG |= (DEMO_LED_1);&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; // set output port bits&lt;BR /&gt;&amp;nbsp;PTG&amp;nbsp; ^= (DEMO_LED_1);&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;flip output to '0'&lt;BR /&gt;&amp;nbsp;PTG&amp;nbsp; ^= (DEMO_LED_1);&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; // flip output back to '1'&lt;BR /&gt;&lt;BR /&gt;2. The NE64 is a 3V3 device and so the output changes from 3V3 to 0V. If you need 5V then you will have to use a level converter.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Mark Butcher&lt;BR /&gt;&lt;A href="http://www.mjbc.ch" rel="nofollow" target="_blank"&gt;www.mjbc.ch&lt;/A&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Mar 2006 10:39:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128583#M944</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2006-03-12T10:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128584#M945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;hi&lt;/DIV&gt;&lt;DIV&gt;thanks for reply&amp;nbsp; , but my question was about port A and B&amp;nbsp; , I tried port G , it is work , actually it is the only port working , I am asking about other ports , how can I make them work ???, is there any jumber setting of something like that ???&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;thanks again&lt;/DIV&gt;&lt;DIV&gt;Ah.Kh.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Mar 2006 15:27:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128584#M945</guid>
      <dc:creator>eg</dc:creator>
      <dc:date>2006-03-12T15:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128585#M946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;Hi&lt;BR /&gt;Sorry, I thought the question was general and I missed the A+B port detail.&lt;/P&gt;&lt;P&gt;The EVB board has some mode jumpers and which are read on startup and configure whether port A + B are expanded bus pins or ports. I think that if you set MODA, MODB, MODC all to zero you will have real single chip mode where all ports are general purpose ports - you may have to watch with external memory devices, I have never worked with the EVB so check the manual.&lt;/P&gt;&lt;P&gt;Cherrs&lt;/P&gt;&lt;P&gt;Mark Butcher&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.mjbc.ch" rel="nofollow" target="_blank"&gt;www.mjbc.ch&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Mar 2006 19:40:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128585#M946</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2006-03-12T19:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128586#M947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;thanks , for replying&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Mar 2006 21:58:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128586#M947</guid>
      <dc:creator>eg</dc:creator>
      <dc:date>2006-03-12T21:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128587#M948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;about level converter you told me about , is it a device I can buy it directly or a circuit and I have to assemble it ??&lt;/P&gt;&lt;P&gt;is there any other way instate of level converters?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Ah.Kh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Mar 2006 22:01:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128587#M948</guid>
      <dc:creator>eg</dc:creator>
      <dc:date>2006-03-12T22:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128588#M949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;It depends on what you want to drive.&lt;/P&gt;&lt;P&gt;If it is a logic output requiring 5V/0V then you can use a buffer - 74HCxx - I don't know exactly which family is best suited without checking the data sheets. Just make sure that the buffer can be powered with 5V and understands the worst case logic levels supplied by the NE64 outputs (for example if the buffer required&amp;nbsp;0,7V VCC&amp;nbsp;minimum to see a logic '1' then it will not work but if it needs 2,7V then it is fine).&lt;/P&gt;&lt;P&gt;If you are driving a load then a simple transistor/MOSFET will also be fine since it allows high voltages to be switched form a 3V3 logic output.&lt;/P&gt;&lt;P&gt;If you need bidirectional lines then there are some special devices with 3V3 and 5V supplies which do all conversions - can't remember their names but a search will surely find them.&lt;/P&gt;&lt;P&gt;If you need to read inputs of 5V logic level then a simple resistive divider will mostly be fine - eg. 18k / 33k (although the signal speed will restrict the highest resistance values which can be used). There are also some special devices, such as the 74HC4049 for converting high voltage CMOS inputs to lower logic levels.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Mark Butcher&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.mjbc.ch" rel="nofollow" target="_blank"&gt;www.mjbc.ch&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 04:12:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128588#M949</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2006-03-13T04:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128589#M950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;hi again&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;relly , I can't find any words that explain how I thank you for your help , I finally suceeded in using of port A &amp;amp; B , but another strange problem appears &lt;IMG alt=":smileymad:" class="emoticon emoticon-smileymad" id="smileymad" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-mad.gif" title="Smiley Mad" /&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I used the port A to control some leds , and by using delay software , I can interchange which leds are on and which are off , and the program works , when I tried to do the same program but by using subroutines , the problem was here , the kit is not responding , and the strange thing is that when I operate the kit by the online true simulator the kit works , but in run mode no result , can you explain why ?????&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;thanks&lt;/DIV&gt;&lt;DIV&gt;Ah.Kh.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 08:46:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128589#M950</guid>
      <dc:creator>eg</dc:creator>
      <dc:date>2006-03-13T08:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Question in  EVB9S12NE64UM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128590#M951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;What is the difference between using "software delay" and "subroutines"...please elaborate?&lt;BR /&gt;&lt;BR /&gt;I think you might be having a timing issue. If you blink the LEDs are too fast a rate, you will not see them. Put an osc scope on them.&lt;BR /&gt;&lt;BR /&gt;When using the true-time simulator your MCU is not executing at real-time speeds therefore you are seeing the leds blink.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 23:23:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Question-in-EVB9S12NE64UM/m-p/128590#M951</guid>
      <dc:creator>EMontanez</dc:creator>
      <dc:date>2006-03-13T23:23:46Z</dc:date>
    </item>
  </channel>
</rss>

