-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ghost MSP support #11242
Ghost MSP support #11242
Conversation
@daleckystepan The only thing i missing is the public beta of Ghost FW 1.0.6.0 and also the support for OpenTX, then I could test this too. |
5049c36
to
c0061ec
Compare
de35a48
to
095d485
Compare
deleted -> all clarified on discord. |
095d485
to
96990f0
Compare
96990f0
to
a41e73b
Compare
@daleckystepan am not up to date. is there anything new or is this pr still up to date? |
@TheIsotopes nothing new. Only rebase. |
a41e73b
to
85e44d9
Compare
ea75a74
to
7b0ceaa
Compare
AUTOMERGE: (FAIL)
|
@daleckystepan Didn't think it would take so long with the 4.3 release. |
@daleckystepan @tonycake Any news when this PR will merged? |
When we get some testing direction from @tonycake |
I am waiting for green light from Tony. |
@daleckystepan @tonycake has anything new come up? |
cb06be8
This comment has been minimized.
This comment has been minimized.
again two weeks have passed. :-( @tonycake @daleckystepan Something new? |
Happy to merge it when @tonycake gives us the green light.. hunt him down and see what’s up |
cb06be8
to
7cf54fc
Compare
Do you want to test this code? Here you have an automated build: |
We have a green light from @tonycake after additional testing. So please retest, review and we are ready to go if there are no issues. If you are experiencing any issue, please fill:
|
sbufWriteU8(dst, GHST_PAYLOAD_SIZE + GHST_FRAME_LENGTH_CRC + GHST_FRAME_LENGTH_TYPE); // lenght | ||
sbufWriteU8(dst, GHST_DL_MSP_RESP); // type | ||
sbufWriteData(dst, payload, payloadSize); // payload | ||
for(int i = 0; i < GHST_PAYLOAD_SIZE - payloadSize; ++i) { // payload fill zeroes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for(int i = 0; i < GHST_PAYLOAD_SIZE - payloadSize; ++i) { // payload fill zeroes | |
for (int i = 0; i < GHST_PAYLOAD_SIZE - payloadSize; ++i) { // payload fill zeroes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@daleckystepan please fix as we like to merge this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works just as well as it did a few months ago. ready to merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this has been tested extensively and we have the ok from Ghost vendor now. Suggest merging before this becomes stale.
sbufWriteU8(dst, GHST_PAYLOAD_SIZE + GHST_FRAME_LENGTH_CRC + GHST_FRAME_LENGTH_TYPE); // lenght | ||
sbufWriteU8(dst, GHST_DL_MSP_RESP); // type | ||
sbufWriteData(dst, payload, payloadSize); // payload | ||
for(int i = 0; i < GHST_PAYLOAD_SIZE - payloadSize; ++i) { // payload fill zeroes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@daleckystepan please fix as we like to merge this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can fix the missing space later
Please remember to merge the betaflight/betaflight-tx-lua-scripts#419 with it at the same time. |
Add MSP support for Ghost
Need new Ghost FW v1.0.6.0+
ETX: EdgeTX/edgetx#1377
LUA: betaflight/betaflight-tx-lua-scripts#419
Thanks to @klutvott123 for helping me
FYI: @TheIsotopes @tonycake