Advertisement
Guest User

Untitled

a guest
Apr 1st, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.43 KB | None | 0 0
  1. int main(void)
  2. {
  3.     // LED indicator
  4.     //config led
  5.     DDRC |= _BV(DDC5);
  6.  
  7.     UART_init();
  8.     nRF905_init();
  9.  
  10.     // Interrupts on
  11.     sei();
  12.  
  13.     // Put into receive mode
  14.     nRF905_receive();
  15.  
  16.     uint8_t mesaj[NRF905_MAX_PAYLOAD];
  17.  
  18.     UART_sendstring("start\r" , '\r');
  19.    
  20.     while(1)
  21.     {
  22.         if(nRF905_airwayBusy())
  23.             PORTC |= _BV(PORTC5);
  24.         else
  25.             PORTC &= ~_BV(PORTC5);
  26.        
  27.         // Clear stuff
  28.         nRF905_getData(mesaj, sizeof(mesaj));
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement