<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://e2e.ti.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Low Power RF Proprietary Software &amp; SimpliciTI Forum - Recent Threads</title><link>http://e2e.ti.com/support/low_power_rf/f/156.aspx</link><description>Software Protocols and Interface, Device Features and Interfaces</description><dc:language>en-US</dc:language><generator>6.x Production</generator><item><title>CC113L and CC115L recieve problem</title><link>http://e2e.ti.com/thread/266006.aspx</link><pubDate>Mon, 20 May 2013 13:33:33 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:2b6b6ffe-f4a9-4d83-a8b2-e8d1968328fd</guid><dc:creator>Selcuk Altunkaya</dc:creator><slash:comments>2</slash:comments><comments>http://e2e.ti.com/thread/266006.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/266006/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hello everybody. Im so much new on this topic. I started firstly to send packets with CC115L and its ok I can send and I can read from SmartRF correctly. my question about CC113L and recieving data. I couldnt do it yet. I did config registers same with SmartRF. but I cant read.Im sending only 1 byte for test. Im using pic16f1824 for test. I need help&lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC2543 USART 0 TX complete interrupt problem in SPI Slave mode.</title><link>http://e2e.ti.com/thread/266061.aspx</link><pubDate>Mon, 20 May 2013 17:27:40 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:e4a386dc-660e-41de-85fb-056574682021</guid><dc:creator>Art Harvey</dc:creator><slash:comments>1</slash:comments><comments>http://e2e.ti.com/thread/266061.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/266061/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hello -&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; I am testing the CC2543 USART in SPI Slave mode, using the transmit interrupt to update the value in U0DBUF. However, it seems a UTX0 interrupt is being generated every 8 SCLK (P0_5) cycles, regardless of the state of SSN (P0_4).&amp;nbsp; My SSN signal toggles every 32 SCLK cycles. The false UTX0 interrupts are a problem, since I get several UTX0 interrupts when SSN is inactive and in fact a single byte hasn&amp;#39;t actually been clocked out of the transmit buffer! When I look at the behavior of the URX0 interrupt, it appears to be functioning properly and only generates interrupts while SSN is actually active and bytes are actually being clocked into the receive buffer...&amp;nbsp; In our application, the loading of data to the USART must eventually be done by DMA, so I need to resolve this.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;FROM MY MAIN:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /***************************************************************************&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * Configure SPI &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Configure USART0 for Alternative 1 =&amp;gt; Port P0 (PERCFG.U0CFG = 0).&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PERCFG = (PERCFG &amp;amp; ~PERCFG_U0CFG) | PERCFG_U0CFG_ALT1;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PPRI &amp;amp;= ~PPRI_PRI0P0; // Give priority to USART 0 over Timer 1 for port 0 pins.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; P0SEL |= BIT5 | BIT4 | BIT3 | BIT2; // Set pins 2, 3, 4 and 5 as peripheral I/O.&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Set USART to SPI mode and Slave mode.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; U0CSR = (U0CSR &amp;amp; ~U0CSR_MODE) | U0CSR_SLAVE;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; U0BAUD =&amp;nbsp; SPI_BAUD_M;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; U0GCR = (U0GCR &amp;amp; ~(U0GCR_BAUD_E | U0GCR_CPOL | U0GCR_CPHA)) | U0GCR_ORDER | SPI_BAUD_E;// MSB first&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //enable the interrupt USART0 TX: IEN2.UTX0IE&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IEN2 |= IEN2_UTX0IE; // Enable interrupt &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; txBufferINDEX = 0;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; U0DBUF = txBufferINDEX;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;MY INTERRUPT:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;#pragma vector = UTX0_VECTOR&lt;br /&gt;__interrupt void uart_TX_ISR(void)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp; IRCON2 = ~UTX0IF; // clear the interrupt flag the proper way&lt;br /&gt;&amp;nbsp; P1_4 = 1; // so I can easily see the interrupt on a scope&lt;br /&gt;&amp;nbsp; txBufferINDEX++; // will wrap, but that&amp;#39;s ok.&lt;br /&gt;&amp;nbsp; U0DBUF = txBufferINDEX; // just load the VALUE of the index&lt;br /&gt;&amp;nbsp; P1_4 = 0; // so I can easily see the interrupt on a scope&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;- Art&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to implement CSMA on cc430f6137IRGZ.</title><link>http://e2e.ti.com/thread/266050.aspx</link><pubDate>Mon, 20 May 2013 16:32:11 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:4416c85a-88da-4957-bae7-0739c8d4309b</guid><dc:creator>Cruze</dc:creator><slash:comments>0</slash:comments><comments>http://e2e.ti.com/thread/266050.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/266050/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi friends,I am new to the chip cc430f6137 in 433M,and now i have a lot of problems.&lt;span&gt;Grateful to all help.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;i already know how to &amp;nbsp;perform simple TX/RX &amp;nbsp;on two cc430 boards.Now &amp;nbsp;I try to implement a simple&amp;nbsp;&lt;span&gt;Backoff algorithm on the board.I konw that i need to use the cca and the rssi,but have no idea about how to set the cca mode and the rssi t&lt;span&gt;hreshold.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;Frankly speaking i am a rookie,so its better to have a project with &lt;span&gt;comment&lt;/span&gt;&amp;nbsp;that i can easily understand.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;I would be grateful to all suggestions and help .By the way ,I am not familier with this f&lt;span&gt;orum,contact me with e-mail:2yr@live.com.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Looking forward to your help.&lt;/p&gt;
&lt;p&gt;Cruze .&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CRC Error when changing chip from CC1110 to CC1125</title><link>http://e2e.ti.com/thread/265013.aspx</link><pubDate>Wed, 15 May 2013 04:37:28 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:eae1cb9d-f9ef-4fe6-944d-8fdfd3f984d6</guid><dc:creator>ar jithesh</dc:creator><slash:comments>3</slash:comments><comments>http://e2e.ti.com/thread/265013.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/265013/rss.aspx</wfw:commentRss><description>&lt;p&gt;&lt;br /&gt;Hi all,&lt;br /&gt;&lt;br /&gt;&amp;nbsp; I&amp;#39;m using CC1110 in one of my project. It is used in both receiver side and in the transmitter side too. Now I have replaced my CC1110 chip in my receiver side to CC1125 to increase the range. The aim to increase the range is done successfully but CRC Error in the received signal, in RF Studio, is found to be increased. What will i have to do to decrease the same so that i&amp;#39;ll be having a clean reception.&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; My RF Parameters in CC1110 is&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; Base Frequency&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; 915M&lt;br /&gt;&amp;nbsp; Channel Number&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;br /&gt;&amp;nbsp; Channel Spacing&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; 200&lt;br /&gt;&amp;nbsp; Xtal Frequency&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; 26M&lt;br /&gt;&amp;nbsp; Data Rate&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; 1.2&lt;br /&gt;&amp;nbsp; RX Filter BW&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; 58&lt;br /&gt;&amp;nbsp; Modulation Format&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; GFSK&lt;br /&gt;&amp;nbsp; Deviation&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; 5&lt;br /&gt;&amp;nbsp; TX Power&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; 10dBm&lt;br /&gt;&amp;nbsp; Manchester Enable&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; False&lt;br /&gt;&amp;nbsp; PA Ramping&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; False&lt;br /&gt;&amp;nbsp; Whitening&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; False&lt;br /&gt;&amp;nbsp; Sequence Number in Payload:&amp;nbsp;&amp;nbsp;&amp;nbsp; False&lt;br /&gt;&amp;nbsp; Viewing Format&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; Hexadecimal&lt;br /&gt;&amp;nbsp; Infinite&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; True&lt;br /&gt;&amp;nbsp; Performance Mode&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; and&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; My RF Parameters in CC1125 is&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; Base Frequency&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; 915M&lt;br /&gt;&amp;nbsp; Channel Number&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;br /&gt;&amp;nbsp; Channel Spacing&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;br /&gt;&amp;nbsp; Xtal Frequency&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; 40M&lt;br /&gt;&amp;nbsp; Data Rate&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; 1.2&lt;br /&gt;&amp;nbsp; RX Filter BW&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; 62.5&lt;br /&gt;&amp;nbsp; Modulation Format&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; 2-GFSK&lt;br /&gt;&amp;nbsp; Deviation&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; 5&lt;br /&gt;&amp;nbsp; TX Power&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; 15dBm&lt;br /&gt;&amp;nbsp; Manchester Enable&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; False&lt;br /&gt;&amp;nbsp; PA Ramping&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; False&lt;br /&gt;&amp;nbsp; Whitening&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; False&lt;br /&gt;&amp;nbsp; Sequence Number in Payload:&amp;nbsp;&amp;nbsp;&amp;nbsp; False&lt;br /&gt;&amp;nbsp; Viewing Format&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; Hexadecimal&lt;br /&gt;&amp;nbsp; Infinite&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; True&lt;br /&gt;&amp;nbsp; Performance Mode&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp; High Performance&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; Both the above configurations are given in RF_Studio_7 for testing. Is there any value that i should tune in order to reduce the CRC Error in reception from CC1125. Rest all register values are set in default state without any change. The SYNC bytes in CC1125 is four bytes and that in CC1110 is two bytes only. So the SYNC bytes have been repeated in CC1125. The SYNC Bytes used is 0xD3 and 0x91 in CC1110 and the same byte is repeated twice in CC1125 ie, 0xD3 0x91 0xD3 and 0x91&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>incorporate RFID into Cellphones  (Handset: Smartphone)</title><link>http://e2e.ti.com/thread/266014.aspx</link><pubDate>Mon, 20 May 2013 14:05:21 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:956ea025-ad9d-47d7-a63b-4a13b64ce4e5</guid><dc:creator>Roman bere</dc:creator><slash:comments>0</slash:comments><comments>http://e2e.ti.com/thread/266014.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/266014/rss.aspx</wfw:commentRss><description>&lt;p&gt;http://www.ti.com/ww/en/apps/handset_smartphone/end_equipment.html&lt;/p&gt;
&lt;p&gt;just read this article Designing a Smartphone?&lt;/p&gt;
&lt;p&gt;thought of this&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know about you, I keep My cell phone with me at all times, in addition I also have an RFID pass card for work. I do not see why they cannot incorporate both together this solves many problems, including PC protection when you leave the PC does not sense the card and locks the screen, automotive unlocks your door when you are near. also have a feature on the cell phone to disable the RFID to prevent others from ghosting your RFID code when they are nearby or TX a fake code, basically like on the remote vehicle lock and unlock button. This can be incorporated with BlueTooth RFID as the user code and data in the Bluetooth as the password. Other devices can use this technology, to use the RFID for access or enable that devices.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC1125 - problems with SPI -CSN and MISO</title><link>http://e2e.ti.com/thread/265340.aspx</link><pubDate>Thu, 16 May 2013 09:07:51 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:8886d0fc-dd2e-402c-ba56-ba8f00028c9e</guid><dc:creator>Mikael Hygren</dc:creator><slash:comments>1</slash:comments><comments>http://e2e.ti.com/thread/265340.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/265340/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hello!&lt;/p&gt;
&lt;p&gt;I have recently received my PCB:s with my MSP430f5507 MCU and the CC1125 RF transceiver. I have based my software on the software examples provided by TI and the code works fine on your CC1120 DK kit with the TRxEB. However when I move my code to my custom PCB I cant get the SPI communication to work with my CC1125. The CSN pin goes low as it should but when the CSN gets pulled low the MISO pin gets pulled high the same time. This is not the case for TRxEB as I have measured all signals with an oscilloscope. In the user guide for the CC1125 it says that the MISO should get pulled low immediately when pulling CSn low but instead it gets pulled high from low. Does anyone know why this is? I use the USCI_B1 module on my MSP430f5507 instead of the USCI_B0 module on the DK. I simply change the pins and ports in the code. I also wonder wether or not not the clock for the SPI need to be different since the code is now running for a CC1125 instead of a CC1120?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;/Mikael&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Wireless Communication with CC110L Air Module</title><link>http://e2e.ti.com/thread/223754.aspx</link><pubDate>Wed, 31 Oct 2012 02:30:36 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:27d1e4e5-4f08-4844-b9bb-d4c19dce2d31</guid><dc:creator>Richmund Fries</dc:creator><slash:comments>8</slash:comments><comments>http://e2e.ti.com/thread/223754.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/223754/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi, I am using the MSP430 Launchpad along with the CC110L Air Module for a wireless RF communication. I&amp;#39;ve been working on this for a few days and all the forms/tutorials I&amp;#39;ve read all say that using the Air Module is utterly complicated. I was hoping to be able to start small with a simple communication that turns an LED on on Launchpad A if a button is pushed on Launchpad B. I am using Grace (a godsend) to set up all the back end so all I need help with is the actual communication.&lt;/p&gt;
&lt;p&gt;The setup is 4-wire with P1.4 for the clock, P1.1 for SOMI, P1.2 for SIMO, STE active high, MSB first, 5000 bps, and I also had Grace set up interrupt handlers for both receive and transmit. I can&amp;#39;t imagine that setting up a simple communication would be more than 40-50 lines of code but I may be wrong here (this is my first time dealing with SPI and RF communications). I&amp;#39;m not sure how to get the two Air Modules to sync (or how to choose one certain slave out of many to talk to) and I&amp;#39;m having trouble figuring out how to send any actual data and receive on the other side.&lt;/p&gt;
&lt;p&gt;Any help would be great. Thanks so much in advance.&lt;/p&gt;
&lt;p&gt;-Richmund&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC2541 receiver</title><link>http://e2e.ti.com/thread/257906.aspx</link><pubDate>Thu, 11 Apr 2013 07:30:35 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:d476cf51-8eb8-4ce3-9a70-9062234adec1</guid><dc:creator>1071236</dc:creator><slash:comments>10</slash:comments><comments>http://e2e.ti.com/thread/257906.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/257906/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I use the CC2541 to make a transmitter and a receiver.&lt;/p&gt;
&lt;p&gt;I use the kit with the CC-Debugger.&lt;/p&gt;
&lt;p&gt;When i send (RFST CMD_TX) my data the PRF_ENDCAUSE is TASK_ENDOK so is suppose my package is sended correctly.&lt;/p&gt;
&lt;p&gt;When i want to receive this package with the other CC2541 (RFST CMD_RX) the PRF_ENDCAUSE is TASKERR_PAR. I don&amp;#39;t realy find the reason.&lt;/p&gt;
&lt;p&gt;This are the settings i programmed to make the receiver.&lt;/p&gt;
&lt;p&gt;Does anybody see something wrong ?&lt;/p&gt;
&lt;p&gt;Thanks in advance,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;============================================================&lt;br /&gt;============================================================&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;int send_data_length;&lt;/p&gt;
&lt;p&gt;//Transmitter only&lt;br /&gt;int data_to_send[8] = {0x40,0x45,0x55,0x60,0x65,0x70,0x75,0x80};&lt;br /&gt;int received_data[16];&lt;br /&gt;int i;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void halSetFrequency(uint16 frequency) &lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRF.CHAN.FREQ = frequency-2379;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void halRfLoadBLEBroadcastPacketPayload(void) &lt;br /&gt;{ &lt;br /&gt;&amp;nbsp; //Number of bytes effective data&lt;br /&gt;&amp;nbsp; send_data_length = (sizeof(data_to_send)/sizeof(int));&lt;br /&gt;&lt;br /&gt;&amp;nbsp; //Read data from FIFO&lt;br /&gt;&amp;nbsp; for(i=0;i&amp;lt;send_data_length+8;i++){&lt;br /&gt;&amp;nbsp; received_data[i] = RFD;&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;&lt;br /&gt;&amp;nbsp; return; &amp;nbsp;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;============================================================&lt;br /&gt;============================================================&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;void halRfInitBleBroadcastMode(unsigned short broadcast_channel) &lt;br /&gt;{ &lt;br /&gt;&amp;nbsp; // Clear radio memory (The RAM registers don&amp;#39;t have a default value set, must be set manually). &lt;br /&gt;&amp;nbsp; memset((void*)RFCORE_RAM_PAGE, 0, RFCORE_RAM_PAGE_SZ);&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; // No timer 2 events sent to LLE&lt;br /&gt;&amp;nbsp; T2EVTCFG = 0x77;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp; PRF.TASK_CONF.MODE&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; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Basic mode, fixed length. &lt;br /&gt;&amp;nbsp; PRF.TASK_CONF.REPEAT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // no repeat &amp;nbsp;&lt;br /&gt;&amp;nbsp; PRF.TASK_CONF.START_CONF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Start each receive/transmit immediately &lt;br /&gt;&amp;nbsp; PRF.TASK_CONF.STOP_CONF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Don&amp;#39;t stop on timer 2 event 2.&lt;br /&gt;&amp;nbsp; PRF.FIFO_CONF.AUTOFLUSH_IGN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Flush duplicate packets&lt;br /&gt;&amp;nbsp; PRF.FIFO_CONF.AUTOFLUSH_CRC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Flush packets with CRC error&lt;br /&gt;&amp;nbsp; PRF.FIFO_CONF.AUTOFLUSH_EMPTY&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Flush packets with no payload&lt;br /&gt;&amp;nbsp; PRF.FIFO_CONF.RX_STATUS_CONF&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Don&amp;#39;t append status information in FIFO&lt;br /&gt;&amp;nbsp; PRF.FIFO_CONF.RX_ADDR_CONF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 1;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Address byte in Rx FIFO&lt;br /&gt;&amp;nbsp; PRF.FIFO_CONF.TX_ADDR_CONF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Read address from PRF.ADDR_ENTRY[0].ADDRESS&lt;br /&gt;&amp;nbsp; PRF.PKT_CONF.ADDR_LEN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 1;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Address byte.&lt;br /&gt;&amp;nbsp; PRF.PKT_CONF.AGC_EN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // AGC disabled.&lt;br /&gt;&amp;nbsp; PRF.PKT_CONF.START_TONE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // No tone in front of packet. &lt;br /&gt;&amp;nbsp; PRF.ADDR_ENTRY[0].CONF.REUSE&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Don&amp;#39;t reuse packet. &lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; TXCTRL&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x19;&lt;br /&gt;&amp;nbsp; TXPOWER&amp;nbsp;&amp;nbsp; = TXPOWER_0_DBM;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Set default output power: 0dBm.&lt;br /&gt;&amp;nbsp; TXFILTCFG = 0x03;&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 Tx filter bandwidth&lt;br /&gt;&amp;nbsp; IVCTRL&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x1B;&lt;br /&gt;&amp;nbsp; FRMCTRL0&amp;nbsp; = 0x40;&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; // Data goes LSB over the air. &lt;br /&gt;&amp;nbsp; ADCTEST0&amp;nbsp; = 0x10;&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; // Adjust ADC gain.&lt;br /&gt;&amp;nbsp; MDMCTRL0&amp;nbsp; = 0x04;&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 1 Mbps at 250 kHz deviation. &lt;br /&gt;&amp;nbsp; MDMCTRL1&amp;nbsp; = 0x48;&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; // Correlation threshold&lt;br /&gt;&amp;nbsp; MDMCTRL2&amp;nbsp; = 0x00;&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; // Syncword transmitted LSB to MSB, 1 leading preamble byte,&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp; MDMCTRL3&amp;nbsp; = 0x63;&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 RSSI mode to peak detect after sync. &lt;br /&gt;&amp;nbsp; MDMTEST0&amp;nbsp; = 0x01; &lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp; //Address configuration&lt;br /&gt;&amp;nbsp; PRF.FIFO_CONF.TX_ADDR_CONF = 0;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Read address from PRF.ADDR_ENTRY[0]&lt;br /&gt;&amp;nbsp; PRF.ADDR_ENTRY[0].ADDRESS = 0x44;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Address&lt;br /&gt;&amp;nbsp; PRF.ADDR_ENTRY[0].CONF.ENA0 = 1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Enable address primary sync word&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; //&amp;nbsp; Set 32 bit sync word:&lt;br /&gt;&amp;nbsp; SW_CONF = 0x00;&lt;br /&gt;&amp;nbsp; SW0 = 0xD6;&lt;br /&gt;&amp;nbsp; SW1 = 0xBE;&lt;br /&gt;&amp;nbsp; SW2 = 0x89;&lt;br /&gt;&amp;nbsp; SW3 = 0x8E;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp; // Set 3 byte CRC &lt;br /&gt;&amp;nbsp; PRF_CRC_LEN = 0x03;&lt;br /&gt;&amp;nbsp; PRF_CRC_INIT[0] = 0x00;&lt;br /&gt;&amp;nbsp; PRF_CRC_INIT[1] = 0x55;&lt;br /&gt;&amp;nbsp; PRF_CRC_INIT[2] = 0x55;&lt;br /&gt;&amp;nbsp; PRF_CRC_INIT[3] = 0x55;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; // Set BLE broadcast channel (2402, 2426 or 2480)&lt;br /&gt;&amp;nbsp; halSetFrequency(broadcast_channel);&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;&lt;br /&gt;&lt;br /&gt;&amp;nbsp; // Enable PN7 whitener. &lt;br /&gt;&amp;nbsp; BSP_P0 = 0x00;&lt;br /&gt;&amp;nbsp; BSP_P1 = 0x5B;&lt;br /&gt;&amp;nbsp; BSP_P2 = 0x06;&lt;br /&gt;&amp;nbsp; BSP_P3 = 0x00;&lt;br /&gt;&amp;nbsp; BSP_MODE = 0x01;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; // Initialization of PN7 whitener in accordance with advertising channel. PRF_W_INIT should be set to 37, 38, or 39 (0x25, 0x26, or 0x27).&lt;br /&gt;&amp;nbsp; if(broadcast_channel == BLE_BROADCAST_CHANNEL_37)&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRF_W_INIT = 0x25;&amp;nbsp; // Init according to BLE channel 37. &lt;br /&gt;&amp;nbsp; }&lt;br /&gt;&amp;nbsp; else if(broadcast_channel == BLE_BROADCAST_CHANNEL_37)&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRF_W_INIT = 0x26;&amp;nbsp; // Init according to BLE channel 37. &lt;br /&gt;&amp;nbsp; }&lt;br /&gt;&amp;nbsp; else if(broadcast_channel == BLE_BROADCAST_CHANNEL_37)&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRF_W_INIT = 0x27;&amp;nbsp; // Init according to BLE channel 37. &lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;============================================================&lt;br /&gt;============================================================&lt;br /&gt;&lt;br /&gt;unsigned char BleBroadcast(void) &lt;br /&gt;{ &amp;nbsp;&lt;br /&gt;&amp;nbsp; // Clear and update LCD display.&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp; halLcdClear();&lt;br /&gt;&amp;nbsp; halLcdWriteLine(1, &amp;quot;BLE BroadCast&amp;quot;);&lt;br /&gt;&lt;br /&gt;&amp;nbsp; // Reset LLE. &lt;br /&gt;&amp;nbsp; LLECTRL = 0x00;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; // Config radio in BLE broadcast mode. &lt;br /&gt;&amp;nbsp; halRfInitBleBroadcastMode(BLE_BROADCAST_CHANNEL_37);&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; // Enable the radio. &lt;br /&gt;&amp;nbsp; LLECTRL = 0x01;&lt;br /&gt;&lt;br /&gt;&amp;nbsp; while(1) &amp;nbsp;&lt;br /&gt;&amp;nbsp; { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Start receive&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while(RFST != 0); &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RFST = 0x08;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Wait for TASKDONE&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while ((RFIRQF1 &amp;amp; RFIRQF1_TASKDONE) != RFIRQF1_TASKDONE);&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // If data received read FIFO&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(PRF.ENDCAUSE == TASK_ENDOK)&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Get packet data. &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; halRfLoadBLEBroadcastPacketPayload();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>frequency compensation mechanism of CC1120</title><link>http://e2e.ti.com/thread/260273.aspx</link><pubDate>Mon, 22 Apr 2013 13:36:31 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:fbb32ccd-31d6-4888-81b8-d4f17311d010</guid><dc:creator>dg3awe</dc:creator><slash:comments>5</slash:comments><comments>http://e2e.ti.com/thread/260273.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/260273/rss.aspx</wfw:commentRss><description>&lt;div&gt;&amp;nbsp;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;Hello TI,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;I have a problem to understand the frequency compensation mechanism of the cc1120. The user guide is not informative at this point.&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;Where does the value of the FREQOFF_EST come from? If I switch OFF the FREQOFF_CFG.FOC_EN, I still get values in FREQOFF_EST. It looks like FREQOFF_EST has nothing to do with the &amp;quot;other&amp;quot; offset compensation. Is there an other offset compensation?&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;The reason of my question is as follows:&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;I want to use the FREQOFF1 and FREQOFF0 to compensate static crystal deviation. For example to calibrate the CC1120 to a fixed frequency, regardless of the crystal deviation. For the additional deviation regarding temperature and voltage I want to use the automatic frequency compensation presented with the register FREQOF_EST.&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;I understood:&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;RF-Frequency = FREQ[2-0] + FREQOFF[1-0](my calculated offset)&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;What is if the FREQOFF_EST tells me 0x000D?&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;a) RF-Frequency = FREQ[2-0] + FREQOFF[1-0](my calculated offset) + 0x000d&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;or b) RF-Frequency = FREQ[2-0] + new offset 0x000d&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;How can I get detailed description of the frequency compensation mechanism?&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;best regards&lt;/span&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;/div&gt;
&lt;div style="margin-bottom:0cm;" lang="en-US"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;font-size:small;"&gt;Nico&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC1120 ASK/OOK packet handling</title><link>http://e2e.ti.com/thread/264864.aspx</link><pubDate>Tue, 14 May 2013 15:12:41 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:d1bd307e-26b5-40c3-98a0-e98e7344194e</guid><dc:creator>Marc Isherwood</dc:creator><slash:comments>6</slash:comments><comments>http://e2e.ti.com/thread/264864.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/264864/rss.aspx</wfw:commentRss><description>&lt;p&gt;Does the CC1120 support packet handling when using OOK?&amp;nbsp; I have been playing with two demo boards but always get rubbish data and of course CRC errors, when using OOK.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>smartrf studio for wmbus</title><link>http://e2e.ti.com/thread/261706.aspx</link><pubDate>Mon, 29 Apr 2013 02:10:28 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:7eb75b30-eb17-4e42-9f79-12d23fd6cfb9</guid><dc:creator>Fazil Kilic</dc:creator><slash:comments>6</slash:comments><comments>http://e2e.ti.com/thread/261706.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/261706/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hello Milen,&lt;/p&gt;
&lt;p&gt;I want to using smartrf studio for wmbus comunication. Communicaiton is not. Other device is Dr.Neuhaus WMBUS data concentrator.&lt;/p&gt;
&lt;p&gt;I &amp;#39;m using CC430F6137. Settings are as below.&lt;/p&gt;
&lt;p&gt;sent data: 68 33 44&amp;nbsp; 68&amp;nbsp; 50&amp;nbsp; 23&amp;nbsp; 08&amp;nbsp; 65&amp;nbsp; 73&amp;nbsp; 69&amp;nbsp; 80&amp;nbsp; A0&amp;nbsp; 91&amp;nbsp; BF&amp;nbsp; 18&amp;nbsp; 40&amp;nbsp; 02&amp;nbsp; B0&amp;nbsp; 29&amp;nbsp; 04&amp;nbsp; 00&amp;nbsp; 82&amp;nbsp; 09&amp;nbsp; 74&amp;nbsp; 09&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 01&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 03&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 00&amp;nbsp; 75&amp;nbsp; 16&lt;/p&gt;
&lt;p&gt;// Rf settings for CC430F6137&lt;/p&gt;
&lt;p&gt;RF_SETTINGS code rfSettings = { &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x06,&amp;nbsp; // IOCFG2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GDO2 Output Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x02,&amp;nbsp; // IOCFG0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GDO0 Output Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x54,&amp;nbsp; // SYNC1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sync Word, High Byte &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x3D,&amp;nbsp; // SYNC0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sync Word, Low Byte &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x00,&amp;nbsp; // PKTCTRL0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Packet Automation Control &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x08,&amp;nbsp; // FSCTRL1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Synthesizer Control &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x21,&amp;nbsp; // FREQ2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Control Word, High Byte &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x6B,&amp;nbsp; // FREQ1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Control Word, Middle Byte &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xD0,&amp;nbsp; // FREQ0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Control Word, Low Byte &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x5B,&amp;nbsp; // MDMCFG4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modem Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xF8,&amp;nbsp; // MDMCFG3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modem Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x05,&amp;nbsp; // MDMCFG2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modem Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x50,&amp;nbsp; // DEVIATN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modem Deviation Setting &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x00,&amp;nbsp; // MCSM1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Main Radio Control State Machine Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x13,&amp;nbsp; // MCSM0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Main Radio Control State Machine Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x2E,&amp;nbsp; // FOCCFG&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Offset Compensation Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xBF,&amp;nbsp; // BSCFG&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bit Synchronization Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x43,&amp;nbsp; // AGCCTRL2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AGC Control &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x09,&amp;nbsp; // AGCCTRL1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AGC Control &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xB5,&amp;nbsp; // AGCCTRL0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AGC Control &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xFB,&amp;nbsp; // WORCTRL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Wake On Radio Control &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xB6,&amp;nbsp; // FREND1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Front End RX Configuration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xEA,&amp;nbsp; // FSCAL3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Synthesizer Calibration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x2A,&amp;nbsp; // FSCAL2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Synthesizer Calibration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x00,&amp;nbsp; // FSCAL1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Synthesizer Calibration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x1F,&amp;nbsp; // FSCAL0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency Synthesizer Calibration &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x81,&amp;nbsp; // TEST2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Various Test Settings &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x35,&amp;nbsp; // TEST1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Various Test Settings &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x09,&amp;nbsp; // TEST0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Various Test Settings &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x80,&amp;nbsp; // LQI&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Demodulator Estimate for Link Quality &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x80,&amp;nbsp; // RSSI&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Received Signal Strength Indication&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x01,&amp;nbsp; // MARCSTATE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Main Radio Control State Machine State &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0x90,&amp;nbsp; // PKTSTATUS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Current GDOx Status and Packet Status &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;0xAD,&amp;nbsp; // VCO_VC_DAC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Current Setting from PLL Calibration Module&lt;/p&gt;
&lt;p&gt;&amp;nbsp;};&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC2500 Transceiver</title><link>http://e2e.ti.com/thread/264569.aspx</link><pubDate>Mon, 13 May 2013 16:40:50 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:9e072fa2-9797-4dd4-8645-da8969b69832</guid><dc:creator>Misha Kumar</dc:creator><slash:comments>1</slash:comments><comments>http://e2e.ti.com/thread/264569.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/264569/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am very new in using tranceivers and therefore needed help.I am planning to use CC2500 2.4 GHz Tranceiver.I want to use a tranceiver for applications where i want to transmit/receive every 30-40 microsecond.I have seen that CC2500 takes 88.4 microsecond to go from idle state to transmit mode.Is it correct to say &amp;nbsp;that this chip would take at least 88.4 microsecond between two consecutive transmissions?&lt;/p&gt;
&lt;p&gt;If yes,can you suggest something that i can use as transmitter/receiver for faster applications(transmitting/receiving every 30-40 microsecond)&lt;/p&gt;
&lt;p&gt;Following the state diagram shown on page 20 of the datasheet,i can see that if the device is only configured as a transmitter,it would go from Transmit mode to optional freq. synth. calibration to Idle state to frequency synthesizer startup(optional) to transmit mode and that is why it would take atleast 88.4 microsecond?Am in understanding it correctly?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;misha&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC2550 not wake up - help</title><link>http://e2e.ti.com/thread/265051.aspx</link><pubDate>Wed, 15 May 2013 08:03:24 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:e1dfe470-6205-4fdd-a716-5fa976195b84</guid><dc:creator>tan pham ngoc</dc:creator><slash:comments>0</slash:comments><comments>http://e2e.ti.com/thread/265051.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/265051/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi TI engineer team,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m from SerialSystem distributor of TI.&lt;/p&gt;
&lt;p&gt;My customer has problem with CC2550. It doesn&amp;#39;t wake up after sleeping with code of&amp;nbsp;&lt;a rel="nofollow" href="http://www.ti.com/product/CC2500" title="Link to Product Folder" target="_blank"&gt;CC2500&lt;/a&gt;. Pls help.&lt;/p&gt;
&lt;p&gt;Below code is valid with&amp;nbsp;&lt;a rel="nofollow" href="http://www.ti.com/product/CC2500" title="Link to Product Folder" target="_blank"&gt;CC2500&lt;/a&gt;. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;/******************************************************************&lt;br /&gt;* power down mode&lt;br /&gt;*&lt;br /&gt;*&lt;br /&gt;*******************************************************************/&lt;br /&gt;void RF_Sleep()&lt;br /&gt;{&lt;br /&gt;&amp;nbsp; //change to idle&lt;br /&gt;&amp;nbsp; TI_CC_SPIStrobe( TI_CCxxx0_SIDLE );&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;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp; TI_CC_SPIStrobe( TI_CCxxx0_SPWD );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;}&lt;br /&gt;/******************************************************************&lt;br /&gt;* wake up from sleep&lt;br /&gt;*&lt;br /&gt;*******************************************************************/&lt;br /&gt;void RF_Wakeup()&lt;br /&gt;{&lt;br /&gt;&amp;nbsp; TI_CC_CSn_PxOUT &amp;amp;= ~TI_CC_CSn_PIN;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // /CS enable&lt;br /&gt;&lt;br /&gt;&amp;nbsp; while (!(USICTL1&amp;amp;USIIFG));&lt;br /&gt;&amp;nbsp; TI_CC_CSn_PxOUT |= TI_CC_CSn_PIN;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // /CS enable&lt;br /&gt;&amp;nbsp;&amp;nbsp; //change to idle&lt;br /&gt;&amp;nbsp; TI_CC_SPIStrobe( TI_CCxxx0_SIDLE );&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;&lt;br /&gt;&amp;nbsp; TI_CC_SPIStrobe( TI_CCxxx0_SNOP );&lt;br /&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC1101 problem</title><link>http://e2e.ti.com/thread/264390.aspx</link><pubDate>Mon, 13 May 2013 04:09:43 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:7e79c967-6356-4986-be83-f43a126f9d74</guid><dc:creator>Sam Crosse</dc:creator><slash:comments>6</slash:comments><comments>http://e2e.ti.com/thread/264390.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/264390/rss.aspx</wfw:commentRss><description>&lt;p&gt;I am trying to send and receive config information via SPI to a CC1101.&lt;/p&gt;
&lt;p&gt;I get strange results.&amp;nbsp; I do not get back the correct default values when I do a read, and if I do a write and then read the result is not what I send.&lt;/p&gt;
&lt;p&gt;If I do a write, I would expect 2 bytes back that are identical (status), as it should return status during header and during data.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/1581.NewFile4.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/1581.NewFile4.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here I send 0x22 as address (Blue) as a write, then 0x01 as data, but the response (aqua) is not equal&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/4162.NewFile5.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/4162.NewFile5.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now I send 0xA2 (Read from 0x22), but the response (data) = 0x00!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Something is wrong.&amp;nbsp; I have tried different clock speeds and inserting delays etc.&amp;nbsp; The CS line is low during the 16 bit transfers, then returns high.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC USB Firmware Library and Examples supporting for CC2543/44 ?</title><link>http://e2e.ti.com/thread/264299.aspx</link><pubDate>Sat, 11 May 2013 11:45:14 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:faecaa2e-eac2-49c7-b9b1-beb72a4e7c7e</guid><dc:creator>Albert Tsai</dc:creator><slash:comments>4</slash:comments><comments>http://e2e.ti.com/thread/264299.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/264299/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; Is there any plan to support CC2543/44 in CC USB Firmware Library and Examples ? Or how could we manually change for CC2543/44 ?&lt;/p&gt;
&lt;p&gt;&amp;nbsp; Also, where could I find the CC2543/44 Example Software Supported in IAR Embedded Workbench?&lt;/p&gt;
&lt;p&gt;&amp;nbsp; (though there is a peripheral soft example available)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;thx&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC1120 frequency calibration</title><link>http://e2e.ti.com/thread/264783.aspx</link><pubDate>Tue, 14 May 2013 10:34:30 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:2afb1526-f104-4a2f-ad81-88c8ddb478e5</guid><dc:creator>Marc Isherwood</dc:creator><slash:comments>3</slash:comments><comments>http://e2e.ti.com/thread/264783.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/264783/rss.aspx</wfw:commentRss><description>&lt;p&gt;I assume that the problem with the PLL calibration applies to all the AutoCal settings as well as the calibrate strobe.&amp;nbsp; Do you plan to issue a new revision of the device soon?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Measuring RSSI on CC2500</title><link>http://e2e.ti.com/thread/263601.aspx</link><pubDate>Wed, 08 May 2013 10:11:16 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:8d651fa2-bfdf-4c70-8b74-d94a8b706830</guid><dc:creator>Stuart Galt</dc:creator><slash:comments>3</slash:comments><comments>http://e2e.ti.com/thread/263601.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/263601/rss.aspx</wfw:commentRss><description>&lt;p&gt;Has anyone tried measuring RSSI on a CC2500 that uses TI&amp;#39;s reference antenna setup, for example - on the TI eZ420-RF2500 target board?&lt;/p&gt;
&lt;p&gt;I used the code below and I keep getting around -90dB which seems way too low and doesn&amp;#39;t seem to change based on distance between End Point and Access Point. I&amp;#39;ve tried on many different examples of the hardware (I have many instances) and all seem to behave the same.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;unsigned char RxNoise_dBm;&lt;/p&gt;
&lt;p&gt;SMPL_Ioctl( IOCTL_OBJ_RADIO, IOCTL_ACT_RADIO_RXON, 0);&amp;nbsp; // Switch to receive&lt;/p&gt;
&lt;p&gt;RxStatus = SMPL_Receive(SMPL_LINKID_USER_UUD, msg, &amp;amp;len); // Any broadcast messages received?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;// Process incoming messages&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;&lt;br /&gt;if(RxStatus == SMPL_SUCCESS)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SMPL_Ioctl(IOCTL_OBJ_RADIO, IOCTL_ACT_RADIO_RSSI, (void *)&amp;amp;RxNoise_dBm); // Get the Rx noise&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC1121 issue with WMBUS</title><link>http://e2e.ti.com/thread/192727.aspx</link><pubDate>Mon, 04 Jun 2012 15:16:26 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:9699c7c0-dcc0-444c-b86e-669834d9e214</guid><dc:creator>Christophe Lescane</dc:creator><slash:comments>9</slash:comments><comments>http://e2e.ti.com/thread/192727.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/192727/rss.aspx</wfw:commentRss><description>&lt;p&gt;Dear all,&lt;/p&gt;
&lt;p&gt;We are facing some interoperability issues on WMBUS between a Sappel / Diehl Izar RE 868 device and a CC1121.&lt;/p&gt;
&lt;p&gt;We have setup the following test environment to determine where the issue can came from.&lt;/p&gt;
&lt;p&gt;The test environment is composed with a Spectrum Analyser, configured as a RF detector, used to synchronized the oscilloscope. &lt;/p&gt;
&lt;p&gt;A FSK demodulator tuned on 868.95 MHz base frequency, 50 KHz deviation, 200KHz. RX BW filter&lt;/p&gt;
&lt;p&gt;Baseband signal and demodulated signal are send to 4 traces osciloscope.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/4403.cc1121.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/4403.cc1121.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h1&gt;&lt;/h1&gt;
&lt;p&gt;Test 1: The use case&lt;/p&gt;
&lt;p&gt;CC1121 configured in packet mode &lt;/p&gt;
&lt;p&gt;cc1121 configuration dump :&lt;/p&gt;
&lt;p&gt;Standard Register:&lt;/p&gt;
&lt;p&gt;0xb0 0xb0 0xb0 0x06 0x93 0x0b 0x54 0x3d&lt;/p&gt;
&lt;p&gt;0x0b 0x0b 0x9a 0x06 0x1c 0x19 0x2a 0x40&lt;/p&gt;
&lt;p&gt;0x46 0x01 0xc6 0x05 0xa9 0x99 0x9a 0x40&lt;/p&gt;
&lt;p&gt;0xfd 0x00 0x03 0x20 0xa9 0xc0 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x0b 0x12 0x08 0x21 0x00 0x00 0x04 0x00&lt;/p&gt;
&lt;p&gt;0x40 0x0f 0x00 0x7f 0x56 0x7a 0xff&lt;/p&gt;
&lt;p&gt;Extented Register:&lt;/p&gt;
&lt;p&gt;0x00 0x20 0xcb 0x00 0x00 0x00 0x01 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x6c 0x9e 0x65 0x02&lt;/p&gt;
&lt;p&gt;0xa6 0x04 0x00 0x5f 0x00 0x20 0x40 0x0e&lt;/p&gt;
&lt;p&gt;0x28 0x03 0x00 0x33 0xff 0x17 0x00 0x50&lt;/p&gt;
&lt;p&gt;0x6e 0x14 0xac 0x16 0x00 0x48 0xac 0xb4&lt;/p&gt;
&lt;p&gt;0x00 0x02 0x00 0x00 0x10 0x00 0x00 0x01&lt;/p&gt;
&lt;p&gt;0x01 0x01 0x0e 0xa0 0x03 0x04 0x03 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x40 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x18 0xec 0x10 0x50 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x02 0x47 0x6d 0x80 0xaf 0x10 0xfe&lt;/p&gt;
&lt;p&gt;0x80 0x27 0xd1 0x00 0x3f 0x00 0x00 0x30&lt;/p&gt;
&lt;p&gt;0x7f 0x00 0x01 0x07 0x02 0xe7 0x00 0x00&lt;/p&gt;
&lt;p&gt;0xea 0x07 0x00 0x83 0x00 0x09 0x00 0x40&lt;/p&gt;
&lt;p&gt;0x21 0x00 0x11 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x0b 0x40 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x0f 0x00&lt;/p&gt;
&lt;p&gt;The Sappel / Diehl devise is sending every 10 seconds a packet where 17 first bytes are all time identical, the CC1121 unfortunately receive only the 5th or 6th correctly&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Dump of the received packet by CC1121:&lt;/p&gt;
&lt;p&gt;3a 57 1c 39 c3 8b 65 86 ca e4 ab 32 72 c4 8b 16&lt;/p&gt;
&lt;p&gt;71 65 39 9c 69 65 89 19 b8 b4 cc b6 58 9c b1 38&lt;/p&gt;
&lt;p&gt;d3 a5 d3 46 4d 39 39 8d 18&lt;/p&gt;
&lt;p align="center"&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/3542.trace1.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/3542.trace1.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Trace 1: Output of the FM demodulator&lt;/p&gt;
&lt;p&gt;Trace 3: GPIO 2 of the CC1121 (Not use in this case)&lt;/p&gt;
&lt;p&gt;Trace A: Magnify of the Trave 1&lt;/p&gt;
&lt;p&gt;Trace B: Magnify of the Trace 3&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The preamble set the data rate to 100KHz (2 bits of the preamble is 20&amp;micro;s as shown in above picture).&lt;/p&gt;
&lt;p&gt;The Synchro bytes id Ok, the 1&lt;sup&gt;st&lt;/sup&gt; byte is ok also&lt;/p&gt;
&lt;p&gt;The begin of pkt id ok 3a / 57/ 1c / 39/ c3 / 8b&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/0116.trace2.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/0116.trace2.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We got the first missing bit on the 7&lt;sup&gt;th&lt;/sup&gt; byte, we received the value 0x65 in place of 0xb2&amp;nbsp;&amp;nbsp; (01100101 / 10110010) &amp;hellip; this pattern of missing bit reproduces every 8 bytes.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Test 2: The CC1121 is configured in transparent mode, to validate the FSK demodulator&lt;/p&gt;
&lt;p&gt;CC1121 configured in transparent mode&amp;nbsp;:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;cc1121 configuration dump :&lt;/p&gt;
&lt;p&gt;Standard Register:&lt;/p&gt;
&lt;p&gt;0x09 0x11 0xb0 0x06 0x93 0x0b 0x54 0x3d&lt;/p&gt;
&lt;p&gt;0x0b 0x0b 0x9a 0x06 0x1c 0x19 0x2a 0x40&lt;/p&gt;
&lt;p&gt;0x46 0x01 0x86 0x45 0xa9 0x99 0x9a 0x40&lt;/p&gt;
&lt;p&gt;0xfd 0x00 0x03 0x20 0xa9 0xc0 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x0b 0x12 0x08 0x21 0x00 0x00 0x07 0x00&lt;/p&gt;
&lt;p&gt;0x40 0x0f 0x00 0x7f 0x56 0x7a 0xff&lt;/p&gt;
&lt;p&gt;Extented Register:&lt;/p&gt;
&lt;p&gt;0x00 0x20 0xcb 0x00 0x00 0x00 0x01 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x6c 0x9e 0x61 0x02&lt;/p&gt;
&lt;p&gt;0xa6 0x04 0x00 0x5f 0x00 0x20 0x40 0x0e&lt;/p&gt;
&lt;p&gt;0x28 0x03 0x00 0x33 0xff 0x17 0x00 0x50&lt;/p&gt;
&lt;p&gt;0x6e 0x14 0xac 0x16 0x00 0x48 0xac 0xb4&lt;/p&gt;
&lt;p&gt;0x00 0x02 0x00 0x00 0x10 0x00 0x00 0x01&lt;/p&gt;
&lt;p&gt;0x01 0x01 0x0e 0xa0 0x03 0x04 0x03 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x40 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x19 0x5d 0x10 0x77 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0xfd 0x47 0x6d 0x00 0xaf 0x0e 0xff&lt;/p&gt;
&lt;p&gt;0x19 0x27 0xd1 0x00 0x3f 0xf6 0x00 0x30&lt;/p&gt;
&lt;p&gt;0x7f 0x00 0x01 0xb4 0x03 0x02 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x7d 0x00 0x00 0x1f 0x00 0x09 0x00 0x40&lt;/p&gt;
&lt;p&gt;0x21 0x00 0x11 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x0b 0x40 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x0f 0x00&lt;/p&gt;
&lt;p align="center"&gt;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/2313.trace3.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/2313.trace3.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Trace 1: Output of the FSK demodulator&lt;/p&gt;
&lt;p&gt;Trace 3: GPIO 2 of the CC1121 (RX Serial)&lt;/p&gt;
&lt;p&gt;Trace A: Magnify of the Trace 1&lt;/p&gt;
&lt;p&gt;Trace B: Magnify of the Trace 3&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/0245.trace4.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/0245.trace4.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p align="center"&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/3531.trace5.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/3531.trace5.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This pictures above show that the CC1121 FSK demodulator work properly. The output from the GPIO 2 (Serial RX in transparent mode) matches perfectly the reference FSK demodulator.&lt;/p&gt;
&lt;p&gt;Test 3:&amp;nbsp; CC1121 configured in synchronous serial mode&amp;nbsp;:&lt;/p&gt;
&lt;p&gt;Goal: Validate the integrated modem.&lt;/p&gt;
&lt;p&gt;cc1121 configuration dump :&lt;/p&gt;
&lt;p&gt;Standard Register:&lt;/p&gt;
&lt;p&gt;0x09 0x08 0xb0 0x06 0x93 0x0b 0x54 0x3d&lt;/p&gt;
&lt;p&gt;0x0b 0x0b 0x9a 0x06 0x1c 0x19 0x2a 0x40&lt;/p&gt;
&lt;p&gt;0x46 0x01 0x86 0x05 0xa9 0x99 0x9a 0x40&lt;/p&gt;
&lt;p&gt;0xfd 0x00 0x03 0x20 0xa9 0xc0 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x0b 0x12 0x08 0x21 0x00 0x00 0x07 0x00&lt;/p&gt;
&lt;p&gt;0x40 0x0f 0x00 0x7f 0x56 0x7a 0xff&lt;/p&gt;
&lt;p&gt;Extented Register:&lt;/p&gt;
&lt;p&gt;0x00 0x20 0xcb 0x00 0x00 0x00 0x01 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x6c 0x9e 0x63 0x02&lt;/p&gt;
&lt;p&gt;0xa6 0x04 0x00 0x5f 0x00 0x20 0x40 0x0e&lt;/p&gt;
&lt;p&gt;0x28 0x03 0x00 0x33 0xff 0x17 0x00 0x50&lt;/p&gt;
&lt;p&gt;0x6e 0x14 0xac 0x16 0x00 0x48 0xac 0xb4&lt;/p&gt;
&lt;p&gt;0x00 0x02 0x00 0x00 0x10 0x00 0x00 0x01&lt;/p&gt;
&lt;p&gt;0x01 0x01 0x0e 0xa0 0x03 0x04 0x03 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x40 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x19 0x18 0x10 0x7f 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0xfe 0x47 0x6d 0x00 0x9f 0x16 0xfe&lt;/p&gt;
&lt;p&gt;0x33 0x27 0xd1 0x00 0x3f 0x00 0x00 0x30&lt;/p&gt;
&lt;p&gt;0x7f 0x00 0x00 0x8b 0x00 0x31 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x80 0x07 0xfe 0xa6 0x00 0x09 0x00 0x40&lt;/p&gt;
&lt;p&gt;0x21 0x00 0x11 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x0b 0x40 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00&lt;/p&gt;
&lt;p&gt;0x0f 0x00&lt;/p&gt;
&lt;p align="center"&gt;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/8547.trace6.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/8547.trace6.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Trace 1: Output of the FSK demodulator&lt;br /&gt;Trace 3: GPIO 2 of the CC1121 (RX Serial)&lt;br /&gt;Trace A: Magnify of the Trace 1&lt;br /&gt;Trace B: Magnify of the Trace 3&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;a href="http://e2e.ti.com/cfs-file.ashx/__key/communityserver-discussions-components-files/156/5001.trace7.bmp"&gt;&lt;img src="http://e2e.ti.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/156/5001.trace7.bmp" alt=" " border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This measure show us that the modem, lose some bit from the base band signal. This is exactly what we see inside the packet. &lt;/p&gt;
&lt;p&gt;Does someone, can give me the magic bit or bits inside the reserved field that will correct this behavior ?&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;
&lt;p&gt;Christophe Lescane.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC2510, Unstable Baudrate on power ON</title><link>http://e2e.ti.com/thread/264579.aspx</link><pubDate>Mon, 13 May 2013 17:38:13 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:4d7f23c5-a479-48ce-aee6-f6721dc1c545</guid><dc:creator>guillermo castano</dc:creator><slash:comments>0</slash:comments><comments>http://e2e.ti.com/thread/264579.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/264579/rss.aspx</wfw:commentRss><description>&lt;p&gt;I&amp;#39;ve been working on some projects using the CC2510. Overall the products are working OK, however there is a problem that happens from time to time where the timing of the UART is off. I have also confirmed that all of the timing processes are off.&lt;/p&gt;
&lt;p&gt;The product uses 5 Volts&amp;nbsp;coming&amp;nbsp;from a standard 1 AMP USB power supply.&lt;br /&gt;I use a 3.3V regulator to feed the CC2510, with a 220uF capacitor at the output.&lt;br /&gt;The circuit uses the 0.01uf for power decoupling.&lt;br /&gt;The Circuit is uses a 26Mhz&amp;nbsp;Crystal.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;At the&amp;nbsp;beginning&amp;nbsp;of the main module I use the following code to check for stable&amp;nbsp;oscillator:&lt;/p&gt;
&lt;p style="margin-left:30px;"&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;beginning&lt;/span&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;nbsp;&amp;amp;= ~OSC_PD_BIT; // powering down all oscillators&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; while(!XOSC_STABLE); // waiting until the oscillator is stable&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; asm(&amp;quot;NOP&amp;quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; CLKCON &amp;amp;= ~MAIN_OSC_BITS; // starting the Crystal Oscillator&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; SLEEP |= OSC_PD_BIT; // powering down the unused oscillator&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;The problem is duplicated when the USB power is applied, 1 in 5 time the&amp;nbsp;start up&amp;nbsp;will be&amp;nbsp;messed up.&lt;/p&gt;
&lt;p&gt;Any help would be&amp;nbsp;appreciated.&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CC2531 USB communicaiton</title><link>http://e2e.ti.com/thread/248870.aspx</link><pubDate>Fri, 01 Mar 2013 03:02:08 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:51cdf0f0-26a3-4cf7-b76e-67726b9427fb</guid><dc:creator>Dragker</dc:creator><slash:comments>2</slash:comments><comments>http://e2e.ti.com/thread/248870.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/248870/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;For the current projects I need get a high-rate connection between the&amp;nbsp;&lt;a href="http://www.ti.com/product/CC2531" title="Link to Product Folder" target="_blank"&gt;CC2531&lt;/a&gt;&amp;nbsp;USB dongle and the PC. I have used&amp;nbsp;swrc088c example code as reference (the rf_modem-rfusb_&lt;a href="http://www.ti.com/product/cc2531" title="Link to Product Folder" target="_blank"&gt;cc2531&lt;/a&gt;&amp;nbsp;example with switched-off radio communicaon code). The original code is working fine and I am able to send the data from PC to dongle and back using the terminal program. But I would like to increase the size of the used USB data packets (by default in swrc088c it is 64 bytes) as I need to send big pieces of data. As far as I understand, the size of the packets used by USB is defined in&amp;nbsp;usb_cdc_descriptor.s51. I have changed:&lt;/p&gt;
&lt;p&gt;DB 40H, 00H &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ; wMaxPacketSize&amp;nbsp;&lt;/p&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;p&gt;DB 80H, 00H &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ; wMaxPacketSize&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Both in&amp;nbsp;endpoint1Desc and in&amp;nbsp;endpoint2Desc. Besides, I have changed in usb_uart.h&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;#define USB_MAX_PACKET_SIZE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 64 &amp;nbsp;// As set in USB endpoint descriptor&lt;/p&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;p&gt;#define USB_MAX_PACKET_SIZE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 128 &amp;nbsp;// As set in USB endpoint descriptor&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Unfortunately, after those modifications my system (Win XP) says for the USB dongle that &amp;quot;This device cannot start. (Code 10)&amp;quot;. If I rewind all back all works fine. Also I have tried to do the same for packet sizes below 0x40 (e.g. 0x20). It worked fine and the PC was limiting the size of the send packets to 32 bytes. As far as I understand, in&amp;nbsp;swrc088c is used the EP 4 that has 256 byte FIFO (according to the swru191c). Therefore, it should support the packets above 64 bytes. Is the maximum packet size of 64 bytes the limitation of the TI PC drivers or do I need some other modifications to make it working with bigger packets?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>problems when using osal_getClock()</title><link>http://e2e.ti.com/thread/255721.aspx</link><pubDate>Tue, 02 Apr 2013 00:43:30 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:dfefbe88-f4ed-44fa-9916-7cf4c47bc52d</guid><dc:creator>Xiqian Lin</dc:creator><slash:comments>4</slash:comments><comments>http://e2e.ti.com/thread/255721.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/255721/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; I am using cc2540 to develop a clock function , first i set &amp;nbsp;the clock with&amp;nbsp;osal_setClock() ,and after about 12hours later I get the clock with&amp;nbsp;osal_getClock() , but&amp;nbsp;unfortunately the return value is less than expect, the difference is almost 180 seconds . The 32k osc is set to&amp;nbsp;EXTERNAL CRYSTAL, &amp;nbsp;but the problem still. How can I to slove this?&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>When I change TX Power in CC1101, must I reset the chip?</title><link>http://e2e.ti.com/thread/263846.aspx</link><pubDate>Thu, 09 May 2013 08:20:04 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:65512c3d-4f5d-4931-a863-9ba9c5a037ef</guid><dc:creator>Luis L��pez</dc:creator><slash:comments>2</slash:comments><comments>http://e2e.ti.com/thread/263846.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/263846/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi all!!&lt;/p&gt;
&lt;p&gt;I want to change the transmission power during operations on pseudo mesh network, but I have a doubt:&lt;/p&gt;
&lt;p&gt;When I change the PATABLE (0x3E) value, must I reset the chip? Or must I do something? In CC1101 datasheet&amp;nbsp;I have not found that information.&lt;/p&gt;
&lt;p&gt;Thanks a lot for pay attention!&lt;/p&gt;
&lt;p&gt;BR&lt;/p&gt;
&lt;p&gt;Luis&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>[CC110x] Industrial Temperature Grade</title><link>http://e2e.ti.com/thread/263594.aspx</link><pubDate>Wed, 08 May 2013 09:36:34 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:2e0b16f9-641c-4901-9a50-0b623501f0e2</guid><dc:creator>Michael Questo</dc:creator><slash:comments>1</slash:comments><comments>http://e2e.ti.com/thread/263594.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/263594/rss.aspx</wfw:commentRss><description>&lt;p&gt;I&amp;rsquo;m looking for a &amp;lt;1Ghz Transceiver (and/or possibly SoC) that is rated for Industrial temp (-40-105C).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The CC110L is only rated from -40 to 85C.&lt;/p&gt;
&lt;div&gt;CC110L Product Folder&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.ti.com/product/cc110L"&gt;http://www.ti.com/product/cc110L&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>PWM Timer 1 output for CC2530</title><link>http://e2e.ti.com/thread/118346.aspx</link><pubDate>Thu, 23 Jun 2011 11:41:43 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:e255433b-b5d1-4233-abe0-5df079e58a42</guid><dc:creator>Dusan Savic</dc:creator><slash:comments>20</slash:comments><comments>http://e2e.ti.com/thread/118346.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/118346/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I am working on CC2530 PWM output Timer 1 on P0_2 port but when I start a program below ,I don&amp;#39;t get pwm signals on P0_2.&lt;/p&gt;
&lt;p&gt;This is my code :&lt;/p&gt;
&lt;p&gt;P0DIR |= 0x04;&amp;nbsp;&amp;nbsp; //&amp;nbsp; P0_2 port &lt;br /&gt;P0SEL &amp;amp;= ~0x04; &lt;br /&gt;&lt;br /&gt;P0_2 ^= 1; //&amp;nbsp; P0_2 set to be output&lt;br /&gt;&lt;br /&gt;T1CTL |= 0x0f; // divide with 128 and to do i up-down mode&lt;/p&gt;
&lt;p&gt;T1CC0L = 0xff;&amp;nbsp;&amp;nbsp; // PWM signal period&lt;br /&gt;T1CC0H = 0x7f;&lt;br /&gt;&lt;br /&gt;T1CC1L = 0x78;&amp;nbsp; // PWM duty cycle&lt;br /&gt;T1CC1H = 0x10;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;T1CCTL1 |= 0x1c;&lt;/p&gt;
&lt;p&gt;PERCFG |= 0x00;&lt;/p&gt;
&lt;p&gt;Please can someone tell me what I am doing wrong and where is mistake...Thank You&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Chronos-to-Chronos Feature</title><link>http://e2e.ti.com/thread/263552.aspx</link><pubDate>Wed, 08 May 2013 07:01:51 GMT</pubDate><guid isPermaLink="false">cb01d8b2-d089-468d-babb-77d1d8683490:58749b9c-9b8b-4098-8fc2-1a5c6384ffb3</guid><dc:creator>Tan Seeteck</dc:creator><slash:comments>0</slash:comments><comments>http://e2e.ti.com/thread/263552.aspx</comments><wfw:commentRss>http://e2e.ti.com/support/low_power_rf/f/156/t/263552/rss.aspx</wfw:commentRss><description>&lt;p&gt;I&amp;#39;ve a EZ430-CHRONOS-433 kit. However, I can&amp;#39;t find the C2C menus upon pressing the &amp;#39;#&amp;#39; key of the watch.&lt;/p&gt;
&lt;p&gt;I used IAR Embedded Workbench IDE to open the software project. I was not able to find the C2C code as mentioned in &amp;quot;Chapter 3.6.2 Chronos-to-Chronos (C2C) Communication&amp;quot; of the user guide.&lt;/p&gt;
&lt;p&gt;Am I missing some important part of this development kit? Thanks for any advice.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>