Add PixHawk telemetry support for Jumper R8 receiver#146
Open
vishwamartur wants to merge 1 commit intodgatf:masterfrom
Open
Add PixHawk telemetry support for Jumper R8 receiver#146vishwamartur wants to merge 1 commit intodgatf:masterfrom
vishwamartur wants to merge 1 commit intodgatf:masterfrom
Conversation
Related to dgatf#89 Add support for PixHawk telemetry protocol for the Jumper R8 receiver. * **common.h**: Add `RX_PIXHAWK` to `rx_protocol_t` enum. Add `pixhawk_task` function prototype. * **main.c**: Include `pixhawk.h` header file. Add a case for `RX_PIXHAWK` in the switch statement to create the PixHawk task. Set `context.uart0_notify_task_handle` to `context.receiver_task_handle` for `RX_PIXHAWK`. * **pixhawk.c**: Implement `pixhawk_task` function to handle PixHawk telemetry. Use UART to communicate with the PixHawk receiver. Parse and process PixHawk telemetry data. * **pixhawk.h**: Define the `pixhawk_task` function prototype. Include necessary headers for UART communication and data processing.
53baec0 to
2422d64
Compare
2c4a790 to
9a7fcb8
Compare
7f0d945 to
e10eb96
Compare
c9139de to
e49627b
Compare
c21dfe8 to
2f731e7
Compare
f1d4618 to
a810c23
Compare
f729306 to
1102e4c
Compare
de8c534 to
57c9208
Compare
4dbae57 to
32a5720
Compare
ac86989 to
2fdccdc
Compare
c8948e3 to
4ae4349
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related to #89
Add support for PixHawk telemetry protocol for the Jumper R8 receiver.
RX_PIXHAWKtorx_protocol_tenum. Addpixhawk_taskfunction prototype.pixhawk.hheader file. Add a case forRX_PIXHAWKin the switch statement to create the PixHawk task. Setcontext.uart0_notify_task_handletocontext.receiver_task_handleforRX_PIXHAWK.pixhawk_taskfunction to handle PixHawk telemetry. Use UART to communicate with the PixHawk receiver. Parse and process PixHawk telemetry data.pixhawk_taskfunction prototype. Include necessary headers for UART communication and data processing.