Upgrade to OpenTX or EdgeTX not an option?Are their any options to making this work with my X10S/FROS?
Upgrade to OpenTX or EdgeTX not an option?Are their any options to making this work with my X10S/FROS?
Yes and I'm receiving information after discovering sensors.Did you bind the receivers with telemetry turned on? Are you receiving telemetry from the locked receivers?
Yes, I've tried both the version in the zip archive from the forum and GitHub.Have you tried the script from here: https://github.com/offer-shmuely/frsky-accst-uni-rx-scripts/tree/main/edgeTx/SCRIPTS/TOOLS ?
Mike
I took a look at EdgeTX release notes and it appears that they updated to Lua 5.3 in 2.11.x. There are incompatibilities with Lua 5.2 used in earlier versions of EdgeTX. I suspect that since the bit32 library has been deprecated, the UNI RX scripts will need to be updated to use the bitwise operators in Lua 5.3.What does display when you run the script?
Could you backup your Tx settings and firmware then try either erskyTx or openTx to see if the script operates correctly with them.
Mike
Lua supports the following bitwise operators:
All bitwise operations convert its operands to integers (see ยง3.4.3), operate on all bits of those integers, and result in an integer.
- &: bitwise AND
- |: bitwise OR
- ~: bitwise exclusive OR
- >>: right shift
- <<: left shift
- ~: unary bitwise NOT
Both right and left shifts fill the vacant bits with zeros. Negative displacements shift to the other direction; displacements with absolute values equal to or higher than the number of bits in an integer result in zero (as all bits are shifted out).