/* This project is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Multiprotocol is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Multiprotocol. If not, see . Works with Traxxas 6519 receivers https://traxxas.com/sites/default/files/24CompGuide-2016.jpg . */ #if defined(TRAXXAS_CYRF6936_INO) #include "iface_cyrf6936.h" //#define TRAXXAS_FORCE_ID #define TRAXXAS_DEBUG #define TRAXXAS_CHANNEL 0x0F #define TRAXXAS_BIND_CHANNEL 0x2B #define TRAXXAS_CHECK_CHANNEL 0x22 #define TRAXXAS_PACKET_SIZE 16 enum { TRAXXAS_BIND_PREP_RX=0, TRAXXAS_BIND_RX, TRAXXAS_BIND_TX1, TRAXXAS_PREP_RX, TRAXXAS_RX, TRAXXAS_PREP_DATA, TRAXXAS_DATA, }; const uint8_t PROGMEM TRAXXAS_init_vals[][2] = { //Init from dump {CYRF_0B_PWR_CTRL, 0x00}, // PMU {CYRF_32_AUTO_CAL_TIME, 0x3C}, // Default init value {CYRF_35_AUTOCAL_OFFSET, 0x14}, // Default init value {CYRF_1B_TX_OFFSET_LSB, 0x55}, // Default init value {CYRF_1C_TX_OFFSET_MSB, 0x05}, // Default init value {CYRF_28_CLK_EN, 0x02}, // Force Receive Clock Enable {CYRF_06_RX_CFG, 0x88 | 0x02}, // AGC enabled, Fast Turn Mode enabled, adding overwrite enable to not lockup RX {CYRF_1E_RX_OVERRIDE, 0x08}, // Reject packets with 0 seed {CYRF_03_TX_CFG, 0x08 | CYRF_BIND_POWER}, // 8DR Mode, 32 chip codes }; static void __attribute__((unused)) TRAXXAS_cyrf_bind_config() { CYRF_PROGMEM_ConfigSOPCode(DEVO_j6pro_sopcodes[0]); CYRF_WriteRegister(CYRF_15_CRC_SEED_LSB, 0x5A); CYRF_WriteRegister(CYRF_16_CRC_SEED_MSB, 0x5A); CYRF_ConfigRFChannel(TRAXXAS_BIND_CHANNEL); } static void __attribute__((unused)) TRAXXAS_cyrf_check_config() { CYRF_PROGMEM_ConfigSOPCode(DEVO_j6pro_sopcodes[9]); CYRF_WriteRegister(CYRF_15_CRC_SEED_LSB, 0xA5); CYRF_WriteRegister(CYRF_16_CRC_SEED_MSB, 0xA5); CYRF_ConfigRFChannel(TRAXXAS_CHECK_CHANNEL); } static void __attribute__((unused)) TRAXXAS_cyrf_data_config() { #ifdef TRAXXAS_FORCE_ID // data taken from TX dump CYRF_WriteRegister(CYRF_15_CRC_SEED_LSB, 0x1B); CYRF_WriteRegister(CYRF_16_CRC_SEED_MSB, 0x3F); CYRF_PROGMEM_ConfigSOPCode(DEVO_j6pro_sopcodes[6]); #else uint16_t addr=TRAXXAS_EEPROM_OFFSET+RX_num*3; CYRF_WriteRegister(CYRF_15_CRC_SEED_LSB, cyrfmfg_id[0] - eeprom_read_byte((EE_ADDR)(addr + 0))); CYRF_WriteRegister(CYRF_16_CRC_SEED_MSB, cyrfmfg_id[1] - eeprom_read_byte((EE_ADDR)(addr + 1))); CYRF_PROGMEM_ConfigSOPCode(DEVO_j6pro_sopcodes[eeprom_read_byte((EE_ADDR)(addr + 2)) % 20]); #endif CYRF_ConfigRFChannel(TRAXXAS_CHANNEL); CYRF_SetTxRxMode(TX_EN); } static void __attribute__((unused)) TRAXXAS_send_data_packet() { packet[0] = 0x01; memset(&packet[1],0x00,TRAXXAS_PACKET_SIZE-1); //Next RF channel ? 0x00 -> keep current, 0x0E change to F=15 //packet[1] //Steering uint16_t ch = convert_channel_16b_nolimit(RUDDER,500,1000,false); packet[2]=ch>>8; packet[3]=ch; //Throttle ch = convert_channel_16b_nolimit(THROTTLE,500,1000,false); packet[4]=ch>>8; packet[5]=ch; //AUX3 ch = convert_channel_16b_nolimit(AILERON,500,1000,false); packet[6]=ch>>8; packet[7]=ch; //AUX4??? ch = convert_channel_16b_nolimit(ELEVATOR,500,1000,false); packet[12]=ch>>8; packet[13]=ch; CYRF_SetPower(0x08); CYRF_WriteDataPacketLen(packet, TRAXXAS_PACKET_SIZE); } uint16_t TRAXXAS_callback() { uint8_t status; switch(phase) { case TRAXXAS_BIND_PREP_RX: case TRAXXAS_PREP_RX: //debugln("PREP_RX"); if(phase == TRAXXAS_BIND_PREP_RX) TRAXXAS_cyrf_bind_config(); else TRAXXAS_cyrf_check_config(); CYRF_SetTxRxMode(RX_EN); //Receive mode CYRF_WriteRegister(CYRF_05_RX_CTRL, 0x83); //Prepare to receive packet_count=100; //Timeout for RX phase++; // TRAXXAS_BIND_RX or TRAXXAS_RX return 7000; case TRAXXAS_BIND_RX: case TRAXXAS_RX: //debugln("RX"); //Read data from RX status = CYRF_ReadRegister(CYRF_07_RX_IRQ_STATUS); if((status & 0x03) == 0x02) // RXC=1, RXE=0 then 2nd check is required (debouncing) status |= CYRF_ReadRegister(CYRF_07_RX_IRQ_STATUS); #ifdef TRAXXAS_DEBUG debugln("s=%02X",status); #endif CYRF_WriteRegister(CYRF_07_RX_IRQ_STATUS, 0x80); // need to set RXOW before data read if((status & 0x07) == 0x02) { // Data received with no errors len=CYRF_ReadRegister(CYRF_09_RX_COUNT); #ifdef TRAXXAS_DEBUG debugln("L=%02X",len) #endif if(len==TRAXXAS_PACKET_SIZE) { CYRF_ReadDataPacketLen(packet, TRAXXAS_PACKET_SIZE); #ifdef TRAXXAS_DEBUG debug("RX="); for(uint8_t i=0;i doesn't care?? - P[8] RF channel - 1 (on packets type 0x03) - P[9] 0x00 unchanged?? - P[10] needs to be set to 0x01 to complete the bind -> normal packet P[0]?? - P[11] unchanged ?? -> no bind if set to 0x00 or 0x81 - P[12] unchanged ?? -> no bind if set to 0x05 or 0x86 - P[13] changes from 0x06 to 0x05 but not needed to complete the bind -> doesn't care?? - P[14..15]=0x00 unchanged?? Bind phase 2 (looks like normal mode?) CHANNEL: 0x05 SOP_CODE: 0xA1 0x78 0xDC 0x3C 0x9E 0x82 0xDC 0x3C CRC_SEED_LSB: 0x1B CRC_SEED_MSB: 0x3F RX2: 0x03 0x4A 0xA3 0x2D 0x1A 0x49 0xFE 0x06 0x00 0x00 0x02 0x01 0x06 0x06 0x00 0x00 TX2: 0x01 0x65 0x01 0xF4 0x03 0xE7 0x02 0x08 0x00 0x00 0x01 0x01 0x02 0xEE 0x00 0x00 Note: TX2 is nearly a normal packet at the exception of the 2nd byte equal to cyrfmfg_id[0] Bind phase 3 (check?) CHANNEL: 0x22 SOP_CODE: 0x97 0xE5 0x14 0x72 0x7F 0x1A 0x14 0x72 CRC_SEED_LSB: 0xA5 CRC_SEED_MSB: 0xA5 RX3: 0x04 0x4A 0xA3 0x2D 0x1A 0x49 0xFE 0x06 0x00 0x00 0x02 0x01 0x06 0x06 0x00 0x00 Switch to normal mode CHANNEL: 0x05 SOP_CODE: 0xA1 0x78 0xDC 0x3C 0x9E 0x82 0xDC 0x3C CRC_SEED_LSB: 0x1B CRC_SEED_MSB: 0x3F TX3: 0x01 0x00 0x02 0xA8 0x03 0xE7 0x02 0x08 0x00 0x00 0x01 0x01 0x02 0xEE 0x00 0x00 CRC_SEED: TX ID: \x65\xE2\x5E\x55\x4D\xFE RX ID: \x4A\xA3\x2D\x1A\x49\xFE CRC 0x1B 0x3F => CRC: 65-4A=1B E2-A3=3F RX ID: \x4B\xA3\x2D\x1A\x49\xFE CRC 0x1A 0x3F => CRC: 65-4B=1A E2-A3=3F RX ID: \x00\x00\x2D\x1A\x49\xFE CRC 0x65 0xE2 => CRC: 65-00=65 E2-00=E2 RX ID: \x00\xFF\x2D\x1A\x49\xFE CRC 0x65 0xE3 => CRC: 65-00=65 E2-FF=E3 RX ID: \xFF\x00\x2D\x1A\x49\xFE CRC 0x66 0xE2 => CRC: 65-FF=66 E2-00=E2 */ /* RX1: 02 4A A3 2D 1A 49 FE 06 00 00 02 01 06 06 00 00 SOP: A1 78 DC 3C 9E 82 DC 3C RX2: 02 49 AC 4F 55 4D FE 05 00 00 02 01 06 06 00 00 SOP: 5A CC AE 46 B6 31 AE 46 RX3: 02 CA F3 62 55 4D FE 03 00 00 02 01 06 06 00 00 SOP: 66 CD 7C 50 DD 26 7C 50 Dump of SOP Codes: 00: 3C 37 CC 91 E2 F8 CC 91 => bind 01: 9B C5 A1 0F AD 39 A2 0F 02: EF 64 B0 2A D2 8F B1 2A 03: 66 CD 7C 50 DD 26 7C 50 04: 5C E1 F6 44 AD 16 F6 44 05: 5A CC AE 46 B6 31 AE 46 06: A1 78 DC 3C 9E 82 DC 3C 07: B9 8E 19 74 6F 65 18 74 08: DF B1 C0 49 62 DF C1 49 09: 97 E5 14 72 7F 1A 14 72 => check 10: 82 C7 90 36 21 03 FF 17 11: E2 F8 CC 91 3C 37 CC 91 => bind 4 bytes group swapped 12: AD 39 A2 0F 9B C5 A1 0F => 01 4 bytes group swapped 13: D2 8F B1 2A EF 64 B0 2A => 02 4 bytes group swapped 14: DD 26 7C 50 66 CD 7C 50 => 03 4 bytes group swapped ... 19: 62 DF C1 49 DF B1 C0 49 => 08 4 bytes group swapped 20: 00 00 00 33 DE AD BA BE ??over?? */ #endif