Wass F / Mbed 2 deprecated Bluepill_nRF24L01P_Hello

Dependencies:   mbed-STM32F103C8T6 mbed nRF24L01P

Fork of nRF24L01P_Hello_World by Owen Edwards

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "stm32f103c8t6.h"
00002 #include "mbed.h"
00003 #include "nRF24L01P.h"
00004 
00005 Serial pc(USBTX, USBRX); // tx, rx
00006 
00007 nRF24L01P my_nrf24l01p(PB_15, PB_14, PB_13, PB_12, PA_8, PA_9);    // mosi, miso, sck, csn, ce, irq
00008 
00009 DigitalOut myled1(LED1);
00010 //DigitalOut myled2(LED2);
00011 
00012 int main() 
00013 {
00014     confSysClock();     //Configure system clock (72MHz HSE clock, 48MHz USB clock)
00015 
00016 // The nRF24L01+ supports transfers from 1 to 32 bytes, but Sparkfun's
00017 //  "Nordic Serial Interface Board" (http://www.sparkfun.com/products/9019)
00018 //  only handles 4 byte transfers in the ATMega code.
00019 #define TRANSFER_SIZE   4
00020 
00021     char txData[TRANSFER_SIZE], rxData[TRANSFER_SIZE];
00022     int txDataCnt = 0;
00023     int rxDataCnt = 0;
00024 
00025     my_nrf24l01p.powerUp();
00026 
00027     // Display the (default) setup of the nRF24L01+ chip
00028     pc.printf( "nRF24L01+ Frequency    : %d MHz\r\n",  my_nrf24l01p.getRfFrequency() );
00029     pc.printf( "nRF24L01+ Output power : %d dBm\r\n",  my_nrf24l01p.getRfOutputPower() );
00030     pc.printf( "nRF24L01+ Data Rate    : %d kbps\r\n", my_nrf24l01p.getAirDataRate() );
00031     pc.printf( "nRF24L01+ TX Address   : 0x%010llX\r\n", my_nrf24l01p.getTxAddress() );
00032     pc.printf( "nRF24L01+ RX Address   : 0x%010llX\r\n", my_nrf24l01p.getRxAddress() );
00033 
00034     pc.printf( "Type keys to test transfers:\r\n  (transfers are grouped into %d characters)\r\n", TRANSFER_SIZE );
00035 
00036     my_nrf24l01p.setTransferSize( TRANSFER_SIZE );
00037 
00038     my_nrf24l01p.setReceiveMode();
00039     my_nrf24l01p.enable();
00040 
00041     while (1) {
00042 
00043         // If we've received anything over the host serial link...
00044         if ( pc.readable() ) {
00045 
00046             // ...add it to the transmit buffer
00047             txData[txDataCnt++] = pc.getc();
00048 
00049             // If the transmit buffer is full
00050             if ( txDataCnt >= sizeof( txData ) ) {
00051 
00052                 // Send the transmitbuffer via the nRF24L01+
00053                 my_nrf24l01p.write( NRF24L01P_PIPE_P0, txData, txDataCnt );
00054 
00055                 txDataCnt = 0;
00056             }
00057 
00058             // Toggle LED1 (to help debug Host -> nRF24L01+ communication)
00059             myled1 = !myled1;
00060         }
00061 
00062         // If we've received anything in the nRF24L01+...
00063         if ( my_nrf24l01p.readable() ) {
00064 
00065             // ...read the data into the receive buffer
00066             rxDataCnt = my_nrf24l01p.read( NRF24L01P_PIPE_P0, rxData, sizeof( rxData ) );
00067 
00068             // Display the receive buffer contents via the host serial link
00069             for ( int i = 0; rxDataCnt > 0; rxDataCnt--, i++ ) {
00070 
00071                 pc.putc( rxData[i] );
00072             }
00073 
00074             // Toggle LED2 (to help debug nRF24L01+ -> Host communication)
00075             //myled2 = !myled2;
00076         }
00077     }
00078 }