<?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: How to Change the Transmit Power in Mac library in 8-bit Microcontrollers</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/How-to-Change-the-Transmit-Power-in-Mac-library/m-p/143885#M6709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;To change the transmit power, you just have to modify the initialization setting.&lt;/DIV&gt;&lt;DIV&gt;you should not change the PHY source code or attempt to write directly to the radio.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The file Nv_data.c contains the PA setting. change the 0xBC in line 0xFF for maximum power.&lt;/DIV&gt;&lt;DIV&gt;Note that transmitting with too high power might make your product not pass FCC or ETSI qualification.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;BR,&lt;/DIV&gt;&lt;DIV&gt;Mads&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Sep 2007 15:46:29 GMT</pubDate>
    <dc:creator>Mads</dc:creator>
    <dc:date>2007-09-01T15:46:29Z</dc:date>
    <item>
      <title>How to Change the Transmit Power in Mac library</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/How-to-Change-the-Transmit-Power-in-Mac-library/m-p/143883#M6707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;I tried to setup the network base on the beekit's MAC library. Now I have a problem about how and where to change the transmit output power? I don't see any function or primitive about it? Would you please provide some demo program or show me a snippet of how to adjust the transmit power?&lt;A href="http://freescale.i.lithium.com/i/smilies/16x16_smiley-sad.gif"&gt;&lt;IMG alt=":smileysad:" class="emoticon emoticon-smileysad" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-sad.gif" title="Smiley Sad" /&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for your attention!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp; Best Regards&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp; Galen&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 19:15:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/How-to-Change-the-Transmit-Power-in-Mac-library/m-p/143883#M6707</guid>
      <dc:creator>galen</dc:creator>
      <dc:date>2007-08-28T19:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to Change the Transmit Power in Mac library</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/How-to-Change-the-Transmit-Power-in-Mac-library/m-p/143884#M6708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If you look in the "PhyPlmeSetCurrentChannelRequest()" function, you'll see how Freescale (or Mindteck) does it:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="msg_source_code"&gt;&lt;DIV class="text_smallest"&gt;Code:&lt;/DIV&gt;&lt;PRE&gt;&lt;FONT face="Arial"&gt;// Write PA level for the channel.
  MC1319xDrv_ReadSpiSync(ABEL_reg12, &amp;amp;PowerLevel);
  PowerLevel &amp;amp;= 0xFF00;
  PowerLevel |= tmpLevel;
  MC1319xDrv_WriteSpiSync(ABEL_reg12, PowerLevel);
&lt;/FONT&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;Where tmpLevel is the new PA Level (transmit output power).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Regards,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;- Ware&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 08:44:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/How-to-Change-the-Transmit-Power-in-Mac-library/m-p/143884#M6708</guid>
      <dc:creator>Ware</dc:creator>
      <dc:date>2020-10-29T08:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to Change the Transmit Power in Mac library</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/How-to-Change-the-Transmit-Power-in-Mac-library/m-p/143885#M6709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;To change the transmit power, you just have to modify the initialization setting.&lt;/DIV&gt;&lt;DIV&gt;you should not change the PHY source code or attempt to write directly to the radio.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The file Nv_data.c contains the PA setting. change the 0xBC in line 0xFF for maximum power.&lt;/DIV&gt;&lt;DIV&gt;Note that transmitting with too high power might make your product not pass FCC or ETSI qualification.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;BR,&lt;/DIV&gt;&lt;DIV&gt;Mads&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2007 15:46:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/How-to-Change-the-Transmit-Power-in-Mac-library/m-p/143885#M6709</guid>
      <dc:creator>Mads</dc:creator>
      <dc:date>2007-09-01T15:46:29Z</dc:date>
    </item>
  </channel>
</rss>

