- Posts: 1016
New Hubsan Upgraded Version on the way
- SeByDocKy
- Offline
goebish wrote: not HOLD, HOLD1:
[channel7] template=simple [mixer] src=HOLD1 dest=Ch7 curvetype=expo points=0,0
It's what I had ... and not working (yet) ....
I will make another small video ...
Please Log in or Create an account to join the conversation.
- goebish
- Offline
- I Void Warranties
- Posts: 2631
vlad_vy wrote: Probably you need to change two bits, set one to 1 and second to 0 and vice versa.
No, here's what my "Extra" firmware is doing:
packet[9] = 0x02; // this bit must always be set
packet[9] |= (1 << Model.proto_opts[PROTOOPTS_EXTRA]) & 0xff;
it only set one bit, and it's working
it's the same than:
packet[9] = 0x02;
packet[9] |= 0x01;
if Model.proto_opts[PROTOOPTS_EXTRA] is set to 0
I don't understand why it wouldn't work
Please Log in or Create an account to join the conversation.
- goebish
- Offline
- I Void Warranties
- Posts: 2631
speedy.sh/m8fzN/deviation-devo7e-Unknown.zip
Please Log in or Create an account to join the conversation.
- SeByDocKy
- Offline
- Posts: 1016
goebish wrote: I rebuilt the firmware, maybe I made a mistake sending the previous one and sent an old one, don't know, better double check:
speedy.sh/m8fzN/deviation-devo7e-Unknown.zip
The same ....
It's very strange ...
Please Log in or Create an account to join the conversation.
- goebish
- Offline
- I Void Warranties
- Posts: 2631
Please Log in or Create an account to join the conversation.
- SeByDocKy
- Offline
- Posts: 1016
Please Log in or Create an account to join the conversation.
- PhracturedBlue
- Offline
- Posts: 4402
And did you remember to change the # of channels to 7? otherwise the 7th channel won't apply.
Please Log in or Create an account to join the conversation.
- SeByDocKy
- Offline
- Posts: 1016
PhracturedBlue wrote: Can you please post your .ini file?
And did you remember to change the # of channels to 7? otherwise the 7th channel won't apply.
Haha I didn't
Please Log in or Create an account to join the conversation.
- SeByDocKy
- Offline
- Posts: 1016
The video I did 2h ago
Please Log in or Create an account to join the conversation.
- PhracturedBlue
- Offline
- Posts: 4402
Try this one
the problem is that you have trim enabled which is reuslting in a multiplicitive factor.
Please Log in or Create an account to join the conversation.
- SeByDocKy
- Offline
- Posts: 1016
PhracturedBlue wrote: Your ini is still wrong.
Try this one
the problem is that you have trim enabled which is reuslting in a multiplicitive factor.
Thanks
It's working now
Please Log in or Create an account to join the conversation.
- goebish
- Offline
- I Void Warranties
- Posts: 2631
Please share your H102D profile in the appropriate forum when it's working as you like.
Please Log in or Create an account to join the conversation.
- SeByDocKy
- Offline
- Posts: 1016
goebish wrote: Mystery solved, thanks
Please share your H102D profile in the appropriate forum when it's working as you like.
Yep
Please Log in or Create an account to join the conversation.
- gke
- Offline
- Posts: 7
enum Tag0xe0 {
TAG,
ROC_MSB, // ??
ROC_LSB, // ??
XUNK3,
XUNK4,
XUNK5,
XUNK6,
XUNK7,
XUNK8
Z_ACC_MSB,
Z_ACC_LSB,
YAW_GYRO_MSB,
YAW_GYRO_LSB,
VBAT,
CRC0,
CRC1
};
enum Tag0xe1 {
TAG1,
PITCH_ACC_MSB,
PITCH_ACC_LSB,
ROLL_ACC_MSB,
ROLL_ACC_LSB,
UNK5,
UNK6,
PITCH_GYRO_MSB,
PITCH_GYRO_LSB,
ROLL_GYRO_MSB,
ROLL_GYRO_LSB,
UNK11,
UNK12,
//VBAT,
//CRC0,
//CRC1
};
Please Log in or Create an account to join the conversation.
- goebish
- Offline
- I Void Warranties
- Posts: 2631
Have you checked packets starting with 0xe0 on a H107 (X4 v1) ?
Please Log in or Create an account to join the conversation.
- vlad_vy
- Offline
- Posts: 3333
Please Log in or Create an account to join the conversation.
- gke
- Offline
- Posts: 7
Please Log in or Create an account to join the conversation.
- gke
- Offline
- Posts: 7
The values don't seem to change with my Hubsan V1. I have a V2 board so I will check that as well as exploring the 0xe0 tagged telemetry.
... seems like the yaw and accz may be in the 0xe0 packet...thanks Goebish.
Please Log in or Create an account to join the conversation.
- goebish
- Offline
- I Void Warranties
- Posts: 2631
Well done gke
Please Log in or Create an account to join the conversation.
- vlad_vy
- Offline
- Posts: 3333
goebish wrote:
midelic wrote: So only 0xE1 is with voltage telemetry?
At least on the H107 (X4 v1).
With 0xE0 VBAT, H107 always show 0,2V. With 0xE1 VBAT is OK.
Please Log in or Create an account to join the conversation.
- Home
- Forum
- Development
- Protocol Development
- New Hubsan Upgraded Version on the way