Subversion Repositories HomeAutomation

Rev

Rev 549 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. #include <inttypes.h>
  2. #include <avr/interrupt.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <config.h> // All configuration parameters
  6. #include <bios.h>   // BIOS interface declarations, including CAN structure and ID defines.
  7. //#include <drivers/uart/serial.h>
  8. #include <drivers/timer/timebase.h>
  9. #include <drivers/ir/receiver/irreceiver.h>
  10.  
  11. #define APP_TYPE    CAN_APPTYPES_IRRECEIVER
  12. #define APP_VERSION 0x0003
  13.  
  14. #define STATE_IDLE      0
  15. #define STATE_IR_REPEAT 1
  16.  
  17. #define IR_ID_DATA  0
  18. #define IR_ID_RAW   1
  19. #define IR_ID_DEBUG 10
  20.  
  21. // A simple message "queue", with space for one message only.
  22. // These are declared volatile to tell the compiler not to optimize away accesses.
  23. volatile Can_Message_t rxMsg; // Message storage
  24. volatile uint8_t rxMsgFull;   // Synchronization flag
  25.  
  26. // CAN message reception callback.
  27. // This function runs with interrupts disabled, keep it as short as possible.
  28. void can_receive(Can_Message_t *msg) {
  29.     if (!rxMsgFull) {
  30.         memcpy((void*)&rxMsg, msg, sizeof(rxMsg));
  31.         rxMsgFull = 1;
  32.     }
  33. }
  34.  
  35. int main(void)
  36. {
  37.     // Enable interrupts as early as possible
  38.     sei();
  39.    
  40.     Timebase_Init();
  41.     //Serial_Init();
  42.     IrReceive_Init();
  43.    
  44.     Can_Message_t txMsg;
  45.     txMsg.Id = (CAN_NMT_APP_START << CAN_SHIFT_NMT_TYPE) | (NODE_ID << CAN_SHIFT_NMT_SID);
  46.     txMsg.DataLength = 4;
  47.     txMsg.RemoteFlag = 0;
  48.     txMsg.ExtendedFlag = 1;
  49.     txMsg.Data.words[0] = APP_TYPE;
  50.     txMsg.Data.words[1] = APP_VERSION;
  51.    
  52.     // Set up callback for CAN reception, this is optional if only sending is required.
  53.     BIOS_CanCallback = &can_receive;
  54.     // Send CAN_NMT_APP_START
  55.     BIOS_CanSend(&txMsg);
  56.  
  57.     //txMsg.Id = ((CAN_SNS << CAN_SHIFT_CLASS) | (SNS_TYPE_IR << CAN_SHIFT_SNS_TYPE) | (IR_ID_DATA<<CAN_SHIFT_SNS_ID) | (NODE_ID << CAN_SHIFT_SNS_SID));
  58.    
  59.     unsigned long time = Timebase_CurrentTime();
  60.     unsigned long irTimeoutTime = 100;
  61.    
  62.     uint8_t ir_protocol, ir_address, ir_command;
  63.     uint16_t ir_timeout;
  64.     uint8_t state = STATE_IDLE;
  65.  
  66.     while (1) {
  67.         time = Timebase_CurrentTime();
  68.        
  69.         if (state == STATE_IDLE) {
  70.             /* test for irdata */
  71.             uint8_t returnval = IrReceive_CheckIR(&ir_protocol, &ir_address, &ir_command, &ir_timeout);
  72.             if (returnval == IR_OK) {
  73.                 /* a protocol was found for irdata, send on can */
  74.                 txMsg.Data.bytes[0] = IR_BUTTON_DOWN;
  75.                 txMsg.Data.bytes[1] = ir_protocol;
  76.                 txMsg.Data.bytes[2] = ir_address;
  77.                 txMsg.Data.bytes[3] = ir_command;
  78.                 txMsg.Id = ((CAN_SNS << CAN_SHIFT_CLASS) | (SNS_TYPE_IR << CAN_SHIFT_SNS_TYPE) | (IR_ID_DATA<<CAN_SHIFT_SNS_ID) | (NODE_ID << CAN_SHIFT_SNS_SID));
  79.                 txMsg.DataLength = 4;
  80.                 BIOS_CanSend(&txMsg);
  81.                
  82.                 /* set up timeout */
  83.                 irTimeoutTime = Timebase_CurrentTime();
  84.                 state = STATE_IR_REPEAT;
  85.                
  86.             } else if (returnval == IR_NO_PROTOCOL) {
  87.                 /* the protocol is unknown so the raw ir-data is sent, makes it easier to develop a new protocol */
  88.                 ir_protocol = IR_PROTO_UNKNOWN;     //used in STATE_IR_REPEATE, to know if to send a release
  89.                 txMsg.DataLength = 8;
  90.                 txMsg.Id = ((CAN_SNS << CAN_SHIFT_CLASS) | (SNS_TYPE_IR << CAN_SHIFT_SNS_TYPE) | (IR_ID_RAW<<CAN_SHIFT_SNS_ID) | (NODE_ID << CAN_SHIFT_SNS_SID));
  91.                 uint8_t datacnt = getRawDataCnt();
  92.                 for (uint8_t i = 0; i < datacnt>>2; i++) {
  93.                     uint8_t index = i<<2;
  94.                     txMsg.Data.words[0] = getRawData(index);
  95.                     txMsg.Data.words[1] = getRawData(index+1);
  96.                     txMsg.Data.words[2] = getRawData(index+2);
  97.                     txMsg.Data.words[3] = getRawData(index+3);
  98.                    
  99.                     /* buffers will be filled when sending more than 2-3 messages, so retry until sent */
  100.                     //while (BIOS_CanSend(&txMsg) != CAN_OK) {}
  101.                     BIOS_CanSend(&txMsg);
  102.                    
  103.                     uint16_t dummycnt = 1;
  104.                     while (dummycnt > 0) {
  105.                         dummycnt++;
  106.                         asm("nop");
  107.                         asm("nop");
  108.                     }
  109.                 }
  110.                
  111.                 uint8_t lastpacketcnt = datacnt&0x03;
  112.                 if (lastpacketcnt > 0) {
  113.                     txMsg.DataLength = lastpacketcnt<<1;
  114.                     for (uint8_t i = 0; i < lastpacketcnt; i++) {
  115.                         txMsg.Data.words[i] = getRawData((datacnt&0xfc)|i);
  116.                     }
  117.                     /* buffers will be filled when sending more than 2-3 messages, so retry until sent */
  118.                     //while (BIOS_CanSend(&txMsg) != CAN_OK) {}
  119.                     BIOS_CanSend(&txMsg);
  120.                 }
  121.  
  122.                 irTimeoutTime = Timebase_CurrentTime();
  123.                 state = STATE_IR_REPEAT;
  124.                 ir_timeout = 200;           /* Set a default timeout */
  125.             } else if (returnval != IR_NO_DATA) {
  126.                 /* debug, send the returned message on errors (except for IR_NO_DATA-errors) */
  127.                 txMsg.Id = ((CAN_SNS << CAN_SHIFT_CLASS) | (SNS_TYPE_IR << CAN_SHIFT_SNS_TYPE) | (IR_ID_DEBUG<<CAN_SHIFT_SNS_ID) | (NODE_ID << CAN_SHIFT_SNS_SID));
  128.                 txMsg.DataLength = 1;
  129.                 txMsg.Data.bytes[0] = returnval;
  130.                 BIOS_CanSend(&txMsg);
  131.             }
  132.  
  133.         } else if (state == STATE_IR_REPEAT) {
  134.             /* check for new ir-data, if no new data during the timout-time then set state to IDLE */
  135.             if (time - irTimeoutTime >= ir_timeout) {      
  136.                 state = STATE_IDLE;
  137.                 /* if the protocol was known then send a release-message */
  138.                 if (ir_protocol != IR_PROTO_UNKNOWN) {
  139.                     txMsg.Data.bytes[0] = IR_BUTTON_UP;
  140.                     BIOS_CanSend(&txMsg);
  141.                 }
  142.             }
  143.             if (IrReceive_CheckIdle() == IR_OK) {
  144.                 irTimeoutTime = Timebase_CurrentTime();
  145.             }
  146.         }
  147.  
  148.        
  149.         if (rxMsgFull) {
  150.             /* No message reception functionality implemented */
  151.            
  152.             /* Flush the received message */
  153.             rxMsgFull = 0; //  
  154.         }
  155.     }
  156.    
  157.     return 0;
  158. }
  159.