]> cloudbase.mooo.com Git - irmp.git/blobdiff - irsnd.c
corrected additional bit handling in SIRCS protocol
[irmp.git] / irsnd.c
diff --git a/irsnd.c b/irsnd.c
index 6f2e6b12caa153fe5db90221b75c29f739a56f06..efae8e4e6288adb2afeb1a397f961e2547799960 100644 (file)
--- a/irsnd.c
+++ b/irsnd.c
@@ -3,7 +3,7 @@
  *\r
  * Copyright (c) 2010 Frank Meyer - frank(at)fli4l.de\r
  *\r
- * $Id: irsnd.c,v 1.24 2010/09/02 10:22:26 fm Exp $\r
+ * $Id: irsnd.c,v 1.28 2011/01/13 15:54:57 fm Exp $\r
  *\r
  * This program is free software; you can redistribute it and/or modify\r
  * it under the terms of the GNU General Public License as published by\r
@@ -54,6 +54,12 @@ typedef unsigned short    uint16_t;
 #include "irsndconfig.h"\r
 #include "irsnd.h"\r
 \r
+#if IRSND_SUPPORT_NIKON_PROTOCOL == 1\r
+typedef uint16_t    IRSND_PAUSE_LEN;\r
+#else\r
+typedef uint8_t     IRSND_PAUSE_LEN;\r
+#endif\r
+\r
 #define SIRCS_START_BIT_PULSE_LEN               (uint8_t)(F_INTERRUPTS * SIRCS_START_BIT_PULSE_TIME + 0.5)\r
 #define SIRCS_START_BIT_PAUSE_LEN               (uint8_t)(F_INTERRUPTS * SIRCS_START_BIT_PAUSE_TIME + 0.5)\r
 #define SIRCS_1_PULSE_LEN                       (uint8_t)(F_INTERRUPTS * SIRCS_1_PULSE_TIME + 0.5)\r
@@ -186,6 +192,14 @@ typedef unsigned short    uint16_t;
 #define JVC_0_PAUSE_LEN                         (uint8_t)(F_INTERRUPTS * JVC_0_PAUSE_TIME + 0.5)\r
 #define JVC_FRAME_REPEAT_PAUSE_LEN              (uint16_t)(F_INTERRUPTS * JVC_FRAME_REPEAT_PAUSE_TIME + 0.5)                // use uint16_t!\r
 \r
+#define NIKON_START_BIT_PULSE_LEN               (uint8_t)(F_INTERRUPTS * NIKON_START_BIT_PULSE_TIME + 0.5)\r
+#define NIKON_START_BIT_PAUSE_LEN               (uint16_t)(F_INTERRUPTS * NIKON_START_BIT_PAUSE_TIME + 0.5)\r
+#define NIKON_REPEAT_START_BIT_PAUSE_LEN        (uint8_t)(F_INTERRUPTS * NIKON_REPEAT_START_BIT_PAUSE_TIME + 0.5)\r
+#define NIKON_PULSE_LEN                         (uint8_t)(F_INTERRUPTS * NIKON_PULSE_TIME + 0.5)\r
+#define NIKON_1_PAUSE_LEN                       (uint8_t)(F_INTERRUPTS * NIKON_1_PAUSE_TIME + 0.5)\r
+#define NIKON_0_PAUSE_LEN                       (uint8_t)(F_INTERRUPTS * NIKON_0_PAUSE_TIME + 0.5)\r
+#define NIKON_FRAME_REPEAT_PAUSE_LEN            (uint16_t)(F_INTERRUPTS * NIKON_FRAME_REPEAT_PAUSE_TIME + 0.5)                // use uint16_t!\r
+\r
 static volatile uint8_t                         irsnd_busy;\r
 static volatile uint8_t                         irsnd_protocol;\r
 static volatile uint8_t                         irsnd_buffer[6];\r
@@ -301,6 +315,10 @@ bitsrevervse (uint16_t x, uint8_t len)
 }\r
 \r
 \r
+#if IRSND_SUPPORT_SIRCS_PROTOCOL == 1\r
+static uint8_t  sircs_additional_bitlen;\r
+#endif // IRSND_SUPPORT_SIRCS_PROTOCOL == 1\r
+\r
 uint8_t\r
 irsnd_send_data (IRMP_DATA * irmp_data_p, uint8_t do_wait)\r
 {\r
@@ -312,6 +330,9 @@ irsnd_send_data (IRMP_DATA * irmp_data_p, uint8_t do_wait)
 #endif\r
 #if IRSND_SUPPORT_RC5_PROTOCOL == 1\r
     static uint8_t  toggle_bit_rc5;\r
+#endif\r
+#if IRSND_SUPPORT_RC5_PROTOCOL == 1\r
+    static uint8_t  toggle_bit_rc6;\r
 #endif\r
     uint16_t        address;\r
     uint16_t        command;\r
@@ -336,10 +357,33 @@ irsnd_send_data (IRMP_DATA * irmp_data_p, uint8_t do_wait)
 #if IRSND_SUPPORT_SIRCS_PROTOCOL == 1\r
         case IRMP_SIRCS_PROTOCOL:\r
         {\r
-            command = bitsrevervse (irmp_data_p->command, SIRCS_MINIMUM_DATA_LEN);\r
+            uint8_t  sircs_additional_command_len;\r
+            uint8_t  sircs_additional_address_len;\r
 \r
-            irsnd_buffer[0] = (command & 0x0FF0) >> 4;                                                         // CCCCCCCC\r
-            irsnd_buffer[1] = (command & 0x000F) << 4;                                                         // CCCC0000\r
+            sircs_additional_bitlen = (irmp_data_p->address & 0xFF00) >> 8;                             // additional bitlen\r
+\r
+            if (sircs_additional_bitlen > 15 - SIRCS_MINIMUM_DATA_LEN)\r
+            {\r
+                sircs_additional_command_len = 15 - SIRCS_MINIMUM_DATA_LEN;\r
+                sircs_additional_address_len = sircs_additional_bitlen - (15 - SIRCS_MINIMUM_DATA_LEN);\r
+            }\r
+            else\r
+            {\r
+                sircs_additional_command_len = sircs_additional_bitlen;\r
+                sircs_additional_address_len = 0;\r
+            }\r
+\r
+            command = bitsrevervse (irmp_data_p->command, 15);\r
+\r
+            irsnd_buffer[0] = (command & 0x7F80) >> 7;                                                  // CCCCCCCC\r
+            irsnd_buffer[1] = (command & 0x007F) << 1;                                                  // CCCC****\r
+\r
+            if (sircs_additional_address_len > 0)\r
+            {\r
+                address = bitsrevervse (irmp_data_p->address, 5);\r
+                irsnd_buffer[1] |= (address & 0x0010) >> 4;\r
+                irsnd_buffer[2] =  (address & 0x000F) << 4;\r
+            }\r
             irsnd_busy      = TRUE;\r
             break;\r
         }\r
@@ -481,6 +525,32 @@ irsnd_send_data (IRMP_DATA * irmp_data_p, uint8_t do_wait)
             break;\r
         }\r
 #endif\r
+#if IRSND_SUPPORT_RC6_PROTOCOL == 1\r
+        case IRMP_RC6_PROTOCOL:\r
+        {\r
+            toggle_bit_rc6 = toggle_bit_rc6 ? 0x00 : 0x08;\r
+\r
+            irsnd_buffer[0] = 0x80 | toggle_bit_rc6 | ((irmp_data_p->address & 0x00E0) >> 5);                   // 1MMMTAAA, MMM = 000\r
+            irsnd_buffer[1] = ((irmp_data_p->address & 0x001F) << 3) | ((irmp_data_p->command & 0xE0) >> 5);    // AAAAACCC\r
+            irsnd_buffer[2] = (irmp_data_p->command & 0x1F) << 3;                                               // CCCCC\r
+            irsnd_busy      = TRUE;\r
+            break;\r
+        }\r
+#endif\r
+#if IRSND_SUPPORT_RC6A_PROTOCOL == 1\r
+        case IRMP_RC6A_PROTOCOL:\r
+        {\r
+            toggle_bit_rc6 = toggle_bit_rc6 ? 0x00 : 0x08;\r
+\r
+            irsnd_buffer[0] = 0x80 | 0x60 | ((irmp_data_p->address & 0x3000) >> 12);                                                // 1MMMT0AA, MMM = 110\r
+            irsnd_buffer[1] = ((irmp_data_p->address & 0x0FFF) >> 4) ;                                                              // AAAAAAAA\r
+            irsnd_buffer[2] = ((irmp_data_p->address & 0x000F) << 4) | ((irmp_data_p->command & 0xF000) >> 12) | toggle_bit_rc6;    // AAAACCCC\r
+            irsnd_buffer[3] = (irmp_data_p->command & 0x0FF0) >> 4;                                                                 // CCCCCCCC\r
+            irsnd_buffer[4] = (irmp_data_p->command & 0x000F) << 4;                                                                 // CCCC\r
+            irsnd_busy      = TRUE;\r
+            break;\r
+        }\r
+#endif\r
 #if IRSND_SUPPORT_DENON_PROTOCOL == 1\r
         case IRMP_DENON_PROTOCOL:\r
         {\r
@@ -547,7 +617,8 @@ irsnd_send_data (IRMP_DATA * irmp_data_p, uint8_t do_wait)
         {\r
             irsnd_buffer[0] = ((irmp_data_p->address & 0x0FFF) >> 5);                                           // SAAAAAAA\r
             irsnd_buffer[1] = ((irmp_data_p->address & 0x1F) << 3) | ((irmp_data_p->command & 0x7F) >> 5);      // AAAAA0CC\r
-            irsnd_buffer[2] = (irmp_data_p->command << 3);                                                      // CCCCC0\r
+            irsnd_buffer[2] = (irmp_data_p->command << 3) | ((~irmp_data_p->command & 0x01) << 2);              // CCCCCc\r
+\r
             irsnd_busy      = TRUE;\r
             break;\r
         }\r
@@ -593,6 +664,14 @@ irsnd_send_data (IRMP_DATA * irmp_data_p, uint8_t do_wait)
             break;\r
         }\r
 #endif\r
+#if IRSND_SUPPORT_NIKON_PROTOCOL == 1\r
+        case IRMP_NIKON_PROTOCOL:\r
+        {\r
+            irsnd_buffer[0] = (irmp_data_p->command & 0x0003) << 6;                                             // CC\r
+            irsnd_busy      = TRUE;\r
+            break;\r
+        }\r
+#endif\r
         default:\r
         {\r
             break;\r
@@ -612,9 +691,9 @@ irsnd_ISR (void)
 {\r
     static uint8_t  current_bit = 0xFF;\r
     static uint8_t  pulse_counter;\r
-    static uint8_t  pause_counter;\r
+    static IRSND_PAUSE_LEN  pause_counter;\r
     static uint8_t  startbit_pulse_len;\r
-    static uint8_t  startbit_pause_len;\r
+    static IRSND_PAUSE_LEN  startbit_pause_len;\r
     static uint8_t  pulse_1_len;\r
     static uint8_t  pause_1_len;\r
     static uint8_t  pulse_0_len;\r
@@ -634,7 +713,7 @@ irsnd_ISR (void)
     static uint8_t  last_bit_value;\r
 #endif\r
     static uint8_t  pulse_len = 0xFF;\r
-    static uint8_t  pause_len = 0xFF;\r
+    static IRSND_PAUSE_LEN  pause_len = 0xFF;\r
 \r
     if (irsnd_busy)\r
     {\r
@@ -722,7 +801,7 @@ irsnd_ISR (void)
                         pulse_0_len                 = SIRCS_0_PULSE_LEN;\r
                         pause_0_len                 = SIRCS_PAUSE_LEN;\r
                         has_stop_bit                = SIRCS_STOP_BIT;\r
-                        complete_data_len           = SIRCS_MINIMUM_DATA_LEN;\r
+                        complete_data_len           = SIRCS_MINIMUM_DATA_LEN + sircs_additional_bitlen;\r
                         n_auto_repetitions          = (repeat_counter == 0) ? SIRCS_FRAMES : 1;     // 3 frames auto repetition if first frame\r
                         auto_repetition_pause_len   = SIRCS_AUTO_REPETITION_PAUSE_LEN;              // 25ms pause\r
                         repeat_frame_pause_len      = SIRCS_FRAME_REPEAT_PAUSE_LEN;\r
@@ -881,6 +960,38 @@ irsnd_ISR (void)
                         break;\r
                     }\r
 #endif\r
+#if IRSND_SUPPORT_RC6_PROTOCOL == 1\r
+                    case IRMP_RC6_PROTOCOL:\r
+                    {\r
+                        startbit_pulse_len          = RC6_START_BIT_PULSE_LEN;\r
+                        startbit_pause_len          = RC6_START_BIT_PAUSE_LEN;\r
+                        pulse_len                   = RC6_BIT_LEN;\r
+                        pause_len                   = RC6_BIT_LEN;\r
+                        has_stop_bit                = RC6_STOP_BIT;\r
+                        complete_data_len           = RC6_COMPLETE_DATA_LEN_SHORT;\r
+                        n_auto_repetitions          = 1;                                            // 1 frame\r
+                        auto_repetition_pause_len   = 0;\r
+                        repeat_frame_pause_len      = RC6_FRAME_REPEAT_PAUSE_LEN;\r
+                        irsnd_set_freq (IRSND_FREQ_36_KHZ);\r
+                        break;\r
+                    }\r
+#endif\r
+#if IRSND_SUPPORT_RC6A_PROTOCOL == 1\r
+                    case IRMP_RC6A_PROTOCOL:\r
+                    {\r
+                        startbit_pulse_len          = RC6_START_BIT_PULSE_LEN;\r
+                        startbit_pause_len          = RC6_START_BIT_PAUSE_LEN;\r
+                        pulse_len                   = RC6_BIT_LEN;\r
+                        pause_len                   = RC6_BIT_LEN;\r
+                        has_stop_bit                = RC6_STOP_BIT;\r
+                        complete_data_len           = RC6_COMPLETE_DATA_LEN_LONG;\r
+                        n_auto_repetitions          = 1;                                            // 1 frame\r
+                        auto_repetition_pause_len   = 0;\r
+                        repeat_frame_pause_len      = RC6_FRAME_REPEAT_PAUSE_LEN;\r
+                        irsnd_set_freq (IRSND_FREQ_36_KHZ);\r
+                        break;\r
+                    }\r
+#endif\r
 #if IRSND_SUPPORT_DENON_PROTOCOL == 1\r
                     case IRMP_DENON_PROTOCOL:\r
                     {\r
@@ -1045,6 +1156,25 @@ irsnd_ISR (void)
                         break;\r
                     }\r
 #endif\r
+#if IRSND_SUPPORT_NIKON_PROTOCOL == 1\r
+                    case IRMP_NIKON_PROTOCOL:\r
+                    {\r
+                        startbit_pulse_len          = NIKON_START_BIT_PULSE_LEN;\r
+                        startbit_pause_len          = 271; // NIKON_START_BIT_PAUSE_LEN;\r
+                        complete_data_len           = NIKON_COMPLETE_DATA_LEN;\r
+                        pulse_1_len                 = NIKON_PULSE_LEN;\r
+                        pause_1_len                 = NIKON_1_PAUSE_LEN;\r
+                        pulse_0_len                 = NIKON_PULSE_LEN;\r
+                        pause_0_len                 = NIKON_0_PAUSE_LEN;\r
+                        has_stop_bit                = NIKON_STOP_BIT;\r
+                        n_auto_repetitions          = 1;                                            // 1 frame\r
+                        auto_repetition_pause_len   = 0;\r
+                        repeat_frame_pause_len      = NIKON_FRAME_REPEAT_PAUSE_LEN;\r
+                        irsnd_set_freq (IRSND_FREQ_38_KHZ);\r
+\r
+                        break;\r
+                    }\r
+#endif\r
                     default:\r
                     {\r
                         irsnd_busy = FALSE;\r
@@ -1100,12 +1230,15 @@ irsnd_ISR (void)
 #if IRSND_SUPPORT_JVC_PROTOCOL == 1\r
                 case IRMP_JVC_PROTOCOL:\r
 #endif\r
+#if IRSND_SUPPORT_NIKON_PROTOCOL == 1\r
+                case IRMP_NIKON_PROTOCOL:\r
+#endif\r
 \r
 \r
 #if IRSND_SUPPORT_SIRCS_PROTOCOL == 1  || IRSND_SUPPORT_NEC_PROTOCOL == 1 || IRSND_SUPPORT_SAMSUNG_PROTOCOL == 1 || IRSND_SUPPORT_MATSUSHITA_PROTOCOL == 1 ||   \\r
     IRSND_SUPPORT_KASEIKYO_PROTOCOL == 1 || IRSND_SUPPORT_RECS80_PROTOCOL == 1 || IRSND_SUPPORT_RECS80EXT_PROTOCOL == 1 || IRSND_SUPPORT_DENON_PROTOCOL == 1 || \\r
     IRSND_SUPPORT_NUBERT_PROTOCOL == 1 || IRSND_SUPPORT_BANG_OLUFSEN_PROTOCOL == 1 || IRSND_SUPPORT_FDC_PROTOCOL == 1 || IRSND_SUPPORT_RCCAR_PROTOCOL == 1 ||   \\r
-    IRSND_SUPPORT_JVC_PROTOCOL == 1\r
+    IRSND_SUPPORT_JVC_PROTOCOL == 1 || IRSND_SUPPORT_NIKON_PROTOCOL == 1\r
                 {\r
                     if (pulse_counter == 0)\r
                     {\r
@@ -1252,6 +1385,12 @@ irsnd_ISR (void)
 #if IRSND_SUPPORT_RC5_PROTOCOL == 1\r
                 case IRMP_RC5_PROTOCOL:\r
 #endif\r
+#if IRSND_SUPPORT_RC6_PROTOCOL == 1\r
+                case IRMP_RC6_PROTOCOL:\r
+#endif\r
+#if IRSND_SUPPORT_RC6A_PROTOCOL == 1\r
+                case IRMP_RC6A_PROTOCOL:\r
+#endif\r
 #if IRSND_SUPPORT_SIEMENS_PROTOCOL == 1\r
                 case IRMP_SIEMENS_PROTOCOL:\r
 #endif\r
@@ -1262,7 +1401,8 @@ irsnd_ISR (void)
                 case IRMP_NOKIA_PROTOCOL:\r
 #endif\r
 \r
-#if IRSND_SUPPORT_RC5_PROTOCOL == 1 || IRSND_SUPPORT_SIEMENS_PROTOCOL == 1 || IRSND_SUPPORT_GRUNDIG_PROTOCOL == 1 || IRSND_SUPPORT_NOKIA_PROTOCOL == 1\r
+#if IRSND_SUPPORT_RC5_PROTOCOL == 1 || IRSND_SUPPORT_RC6_PROTOCOL == 1 || IRSND_SUPPORT_RC6A_PROTOCOL == 1 || IRSND_SUPPORT_SIEMENS_PROTOCOL == 1 || \\r
+    IRSND_SUPPORT_GRUNDIG_PROTOCOL == 1 || IRSND_SUPPORT_NOKIA_PROTOCOL == 1\r
                 {\r
                     if (pulse_counter == pulse_len && pause_counter == pause_len)\r
                     {\r
@@ -1329,15 +1469,51 @@ irsnd_ISR (void)
                                 first_pulse = (irsnd_buffer[current_bit / 8] & (1<<(7-(current_bit % 8)))) ? TRUE : FALSE;\r
                             }\r
                         }\r
-                        else // if (irsnd_protocol == IRMP_RC5_PROTOCOL || irsnd_protocol == IRMP_SIEMENS_PROTOCOL)\r
+                        else // if (irsnd_protocol == IRMP_RC5_PROTOCOL || irsnd_protocol == IRMP_RC6_PROTOCOL || irsnd_protocol == IRMP_RC6A_PROTOCOL ||\r
+                             //     irsnd_protocol == IRMP_SIEMENS_PROTOCOL)\r
 #endif\r
                         {\r
                             if (current_bit == 0xFF)                                                    // 1 start bit\r
                             {\r
+#if IRSND_SUPPORT_RC6_PROTOCOL == 1 || IRSND_SUPPORT_RC6A_PROTOCOL == 1\r
+                                if (irsnd_protocol == IRMP_RC6_PROTOCOL || irsnd_protocol == IRMP_RC6A_PROTOCOL)\r
+                                {\r
+                                    pulse_len = startbit_pulse_len;\r
+                                    pause_len = startbit_pause_len;\r
+                                }\r
+#endif\r
                                 first_pulse = TRUE;\r
                             }\r
                             else                                                                        // send n'th bit\r
                             {\r
+#if IRSND_SUPPORT_RC6_PROTOCOL == 1 || IRSND_SUPPORT_RC6A_PROTOCOL == 1\r
+                                if (irsnd_protocol == IRMP_RC6_PROTOCOL || irsnd_protocol == IRMP_RC6A_PROTOCOL)\r
+                                {\r
+                                    pulse_len = RC6_BIT_LEN;\r
+                                    pause_len = RC6_BIT_LEN;\r
+\r
+                                    if (irsnd_protocol == IRMP_RC6_PROTOCOL)\r
+                                    {\r
+                                        if (current_bit == 4)                                           // toggle bit (double len)\r
+                                        {\r
+                                            pulse_len = 2 * RC6_BIT_LEN;\r
+                                            pause_len = 2 * RC6_BIT_LEN;\r
+                                        }\r
+                                    }\r
+                                    else // if (irsnd_protocol == IRMP_RC6A_PROTOCOL)\r
+                                    {\r
+                                        if (current_bit == 4)                                           // toggle bit (double len)\r
+                                        {\r
+                                            pulse_len = 2 * RC6_BIT_LEN + RC6_BIT_LEN;                  // hack!\r
+                                            pause_len = 2 * RC6_BIT_LEN;\r
+                                        }\r
+                                        else if (current_bit == 5)                                      // toggle bit (double len)\r
+                                        {\r
+                                            pause_len = 2 * RC6_BIT_LEN;\r
+                                        }\r
+                                    }\r
+                                }\r
+#endif\r
                                 first_pulse = (irsnd_buffer[current_bit / 8] & (1<<(7-(current_bit % 8)))) ? TRUE : FALSE;\r
                             }\r
 \r
@@ -1388,7 +1564,8 @@ irsnd_ISR (void)
                     }\r
                     break;\r
                 }\r
-#endif // IRSND_SUPPORT_RC5_PROTOCOL == 1 || IRSND_SUPPORT_SIEMENS_PROTOCOL == 1 || IRSND_SUPPORT_GRUNDIG_PROTOCOL == 1 || IRSND_SUPPORT_NOKIA_PROTOCOL == 1\r
+#endif // IRSND_SUPPORT_RC5_PROTOCOL == 1 || IRSND_SUPPORT_RC6_PROTOCOL == 1 || || IRSND_SUPPORT_RC6A_PROTOCOL == 1 || IRSND_SUPPORT_SIEMENS_PROTOCOL == 1 ||\r
+       // IRSND_SUPPORT_GRUNDIG_PROTOCOL == 1 || IRSND_SUPPORT_NOKIA_PROTOCOL == 1\r
 \r
                 default:\r
                 {\r