eXc wrote:Hello,
that's right, have tested this version too but also want to be able to use the newest dev's with all their functions. All 2.1 Versions will work, but i have found the problem in my case. Perhaps you will give it a try. Find the following part in Output.ino (Line 55ff. in my case) and change the last values as i did.
Code: Select all
#if defined(SERVO)
#if defined(AIRPLANE)|| defined(HELICOPTER)
// To prevent motor to start at reset. atomicServo[7]=5 or 249 if reversed servo
volatile uint16_t atomicServo[8] = {8000,8000,8000,8000,8000,8000,8000,8000}; // last value now 8000 instead of 320
#else
volatile uint16_t atomicServo[8] = {8000,8000,8000,8000,8000,8000,8000,320}; // last value now 320 instead of 8000
#endif
#endif
Best regards
Christian
In these lines, my values are at the moment: "volatile uint8_t atomicServo[8] = {125,125,125,125,125,125,125,5};"
and: "volatile uint8_t atomicServo[8] = {125,125,125,125,125,125,125,125};"
Before I change anything (because it is working fine now

Gimbal AND ALThold), I want to ask you.
What is the purpose of changing these values?
BTW, I don't know anything about programming the Arduino.......
