├── .github └── FUNDING.yml ├── 328P ├── 328P.ino ├── 4Way.cpp ├── 4Way.h ├── 4way_protocol.h ├── ESC_Serial.cpp ├── ESC_Serial.h ├── Global.cpp ├── Global.h ├── MSP.cpp ├── MSP.h ├── msp_protocol.h ├── serial_comm.cpp ├── serial_comm.h └── version.h ├── ESP32 ├── 4Way.cpp ├── 4Way.h ├── ESC_Serial.cpp ├── ESC_Serial.h ├── ESP32.ino ├── Global.cpp ├── Global.h ├── MSP.cpp ├── MSP.h ├── ble_comm.cpp ├── ble_comm.h ├── serial_comm.cpp └── serial_comm.h ├── LICENSE ├── README.md └── RP2040 ├── 4Way.cpp ├── 4Way.h ├── ESC_Serial.cpp ├── ESC_Serial.h ├── Global.cpp ├── Global.h ├── MSP.cpp ├── MSP.h ├── elapsedMillis.h ├── esc_passthrough.cpp ├── esc_passthrough.h ├── onewire_receive.pio ├── onewire_receive.pio.h ├── onewire_transmit.pio ├── onewire_transmit.pio.h └── rp2040.ino /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: brushlesspower 2 | -------------------------------------------------------------------------------- /328P/328P.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/328P.ino -------------------------------------------------------------------------------- /328P/4Way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/4Way.cpp -------------------------------------------------------------------------------- /328P/4Way.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/4Way.h -------------------------------------------------------------------------------- /328P/4way_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/4way_protocol.h -------------------------------------------------------------------------------- /328P/ESC_Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/ESC_Serial.cpp -------------------------------------------------------------------------------- /328P/ESC_Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/ESC_Serial.h -------------------------------------------------------------------------------- /328P/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/Global.cpp -------------------------------------------------------------------------------- /328P/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/Global.h -------------------------------------------------------------------------------- /328P/MSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/MSP.cpp -------------------------------------------------------------------------------- /328P/MSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/MSP.h -------------------------------------------------------------------------------- /328P/msp_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/msp_protocol.h -------------------------------------------------------------------------------- /328P/serial_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/serial_comm.cpp -------------------------------------------------------------------------------- /328P/serial_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/serial_comm.h -------------------------------------------------------------------------------- /328P/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/328P/version.h -------------------------------------------------------------------------------- /ESP32/4Way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/4Way.cpp -------------------------------------------------------------------------------- /ESP32/4Way.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/4Way.h -------------------------------------------------------------------------------- /ESP32/ESC_Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/ESC_Serial.cpp -------------------------------------------------------------------------------- /ESP32/ESC_Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/ESC_Serial.h -------------------------------------------------------------------------------- /ESP32/ESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/ESP32.ino -------------------------------------------------------------------------------- /ESP32/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/Global.cpp -------------------------------------------------------------------------------- /ESP32/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/Global.h -------------------------------------------------------------------------------- /ESP32/MSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/MSP.cpp -------------------------------------------------------------------------------- /ESP32/MSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/MSP.h -------------------------------------------------------------------------------- /ESP32/ble_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/ble_comm.cpp -------------------------------------------------------------------------------- /ESP32/ble_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/ble_comm.h -------------------------------------------------------------------------------- /ESP32/serial_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/serial_comm.cpp -------------------------------------------------------------------------------- /ESP32/serial_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/ESP32/serial_comm.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/README.md -------------------------------------------------------------------------------- /RP2040/4Way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/4Way.cpp -------------------------------------------------------------------------------- /RP2040/4Way.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/4Way.h -------------------------------------------------------------------------------- /RP2040/ESC_Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/ESC_Serial.cpp -------------------------------------------------------------------------------- /RP2040/ESC_Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/ESC_Serial.h -------------------------------------------------------------------------------- /RP2040/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/Global.cpp -------------------------------------------------------------------------------- /RP2040/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/Global.h -------------------------------------------------------------------------------- /RP2040/MSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/MSP.cpp -------------------------------------------------------------------------------- /RP2040/MSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/MSP.h -------------------------------------------------------------------------------- /RP2040/elapsedMillis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/elapsedMillis.h -------------------------------------------------------------------------------- /RP2040/esc_passthrough.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/esc_passthrough.cpp -------------------------------------------------------------------------------- /RP2040/esc_passthrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/esc_passthrough.h -------------------------------------------------------------------------------- /RP2040/onewire_receive.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/onewire_receive.pio -------------------------------------------------------------------------------- /RP2040/onewire_receive.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/onewire_receive.pio.h -------------------------------------------------------------------------------- /RP2040/onewire_transmit.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/onewire_transmit.pio -------------------------------------------------------------------------------- /RP2040/onewire_transmit.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/onewire_transmit.pio.h -------------------------------------------------------------------------------- /RP2040/rp2040.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrushlessPower/BlHeli-Passthrough/HEAD/RP2040/rp2040.ino --------------------------------------------------------------------------------