Quantcast
Channel: ArduPilot Discourse - Latest topics
Viewing all 46700 articles
Browse latest View live

Cube black in Kore board fw 4.0.3 resets param

$
0
0

@Corrado_Steri wrote:

Already happened 3-4 times. cube black in Kore board fw 4.0.3 resets all params to default.

Running latest 4.0.3 stable and updated bootloader.

Everything reset to default, even missed frame type, EVERYTHING to default.

Is there any solution to this? It is very very annoying and dangerous problem.

I just updated bootloader using mission planner but i am on 4.0.3, should i update to 4.0.4 and update bootloader again?

How can we check we have latest bootloader installed?

Posts: 1

Participants: 1

Read full topic


Pixhawk 4 Mini + R1 clone receiver (Yaapu)

$
0
0

@myozone wrote:

Following on from my previous post, can anyone tell me if I can connect directly together a Pixhawk 4 Mini and a R1 clone receiver to enable Yaapu telemetry over S.Port. The Pixhawk Mini is 3.3V on the telemetry pins and the R1 looks to be the same or is it 5v TTL.? and would need a MAX232.
Obviously I still need a the diode to ‘mix’ the two TX and RX on the telemetry to the single pin S.port.

Posts: 1

Participants: 1

Read full topic

BendyRuler object avoidance for 3 lidars

$
0
0

@lumono wrote:

I installed 3 TFmini plus on front of Rover. Forward, forward left, forward right.
But the Rover stops on front of detected object when I use Bendy ruler.

Posts: 1

Participants: 1

Read full topic

Update herelink firmware

Mower / Large vehicle compass calibration and selection

$
0
0

@rboyd wrote:

Hey all, I’ve been following a lot of the threads and youtube videos from @ktrussell and @bitdog etc and it has been a big help in getting my ZTR mower equipped with flight controller and servos. Thanks for all the posts.

My machine is driving great now in the yard by RC and I’m working on nav today. I think I’ll be able to get the U9P GPS RTK setup working today, but I can’t seem to get my external compass calibrated. I picked up the LIS3MDL board and whatever I do the calibration fails (usually “bad radius”).

Is there a better sensor I ought to be using? Are people using Large Vehicle MagCal with good success? I’ve been using QGroundControl on a Mac and I saw this was NYI (https://github.com/mavlink/qgroundcontrol/issues/8142), but maybe I need to find a Windows box for Mission Planner.

Would it be possible to kick off Large Vehicle MagCal using the mavlink console even without UI support?

Posts: 1

Participants: 1

Read full topic

Vario sound with qgroundcontrol

$
0
0

@adcam wrote:

I am using qgroundcontrol android together with pixracer/arduplane 4.0.5
Telemetry is through tbs crossfire

Is it possible to have vario sound on the android tablet ?

Thanks

Adolfo

Posts: 2

Participants: 2

Read full topic

Latest Windows 10 does not recognise device. (Pixhawk 2.1 Cube Orange)

$
0
0

@Deadtillten wrote:

Since the latest Windows 10 version 1909 update I keep getting a message off windows saying, “the device malfunctioned and the device was not recognised by windows”.
I have tried putting windows into test mode , tried turning off windows signing and other things to name a few without any success at all. It seems windows is going all out blocking unsigned drivers.
Is there anybody out there who have been successful in overcoming this problem.
I’ve spent hours trying to connect to the Cube. Even radio telemetry cannot connect now.
I beginning to hate Windows with a passion.

Posts: 1

Participants: 1

Read full topic

IC engine without RC radio

$
0
0

@Lars_Meadoworth wrote:

Is there a way to operate an IC ignition without a physical RC switch? I use a GCS with no RC all the time on electric motors, but I can’t seem to find a way to get the IC starter channel to work without a radio switch.

Posts: 1

Participants: 1

Read full topic


Finally Got it in air and back on Earth Safely... Now onto Video

$
0
0

@ChrisDaily wrote:

So my next effort is to get video to Qgroundcontrol if that is even an option? So my question can Qgroundcontrol be set up to except video from drone? If so where does one go for such I am not seeing anything anywhere.

I do see Camera under vehicle setup but not seeing anything for streaming video, all options there are re gimbal?

BTW anyone in the Dallas or North of Dallas area real good with Qgroundcontrol? Would love to find a willing tutor, lol.

Posts: 1

Participants: 1

Read full topic

Looking for a master in Alexmos 32 - Paid

$
0
0

@gnitzan wrote:

Looking for someone who can lead me to fix my new 3 axis gimbal in remote. I simply upgraded my fw without a backup and now I need to revive it but no knowledge in alexmos 32.
Please pm me

Posts: 1

Participants: 1

Read full topic

GPS says NO-GPS

$
0
0

@rsilvers wrote:

Last week everything was fine. Today I connected a HERE Flow to the CanBus and put on some Flow params. I am not able to get any SAT and it says GPS: No GPS.

GPS is a type 880 with Compass. GPS has blue LED on, flashing, with a brief red flash also.

So I unplugged the CanBus and that didn’t fix it.

So I reloaded a backup of the Parem file from last week, that didn’t fix it. It gets no satellites. now.

This is a Pixhawk 1 (9) from a 3D Robotics Iris. I am running the latest Arducopter 4.0.3.

Any ideas?

Posts: 2

Participants: 2

Read full topic

Visual Studio Development of MP

$
0
0

@Autonomost wrote:

Hi All,

I’ve been developing in visual studio, compiling and changing software and such. And I have been running all of my git commands for pushing and committing and such in linux. (I have the folder where both visual studio and linux access it linked on my windows host)

Whenever I compile and run my debug version of MP on the windows host, doing a git status on the linux vm where my repo lives shows a whole bunch of files changed.

Is this simply windows doing something to the files that git picks up on? Is there a simple way to avoid seeing so many changes pop up when I havent changed those files?

Are all of these changes normal?

Any help would be great!

Posts: 1

Participants: 1

Read full topic

CUAV V5+, COMPASS_DEV_ID2 is marked as ReadOnly, and will not be changed

$
0
0

@beck wrote:

Hello,

Mission Planner recognizes the external compass in NEo V2
not anymore. The above error message appears.
How do I change read only?

Posts: 1

Participants: 1

Read full topic

How can I create a new waypoint during the auto flight?

$
0
0

@Dobrowolsky wrote:

Hi guys!

I trying delete and creation a new mission during the auto flight mode.
I use this metods:
mission.stop();
mission.clear();
mission.start_or_resume();

And then I create a new command with the location specified as follow:
//First wp
cmd.id = MAV_CMD_NAV_WAYPOINT;
cmd.p1 = 0;
cmd.content.location = inertial_nav.get_position();
cmd.content.location.offset(x, y);
cmd.index = 0;
cmd.create = true;
copter.wp_nav->set_wp_destination(cmd.content.location);
mission.add_cmd(cmd);

       //Second wp
        next_wp.id = MAV_CMD_NAV_LAND;
        next_wp.p1 = 0;
        next_wp.content.location = location;
        next_wp.index = 4;
        copter.wp_nav->set_wp_destination(location);
        mission.add_cmd(next_wp);

But the problem is that it skips the first created wp and goes straight to the second. How do I make him follow both wp? I try change the index equal 0 in both.

Thanks!

Posts: 1

Participants: 1

Read full topic

Shaking up and down

$
0
0

@rsilvers wrote:

I have an ARWing and a servo was damaged in a crash where the gear stripped.

I replaced that one cheap analog servo with a digital metal gear servo. I knew I should probably replace them both, but didn’t because the wire was too short and I had to solder a bunch to replace the first one. I am using Ardupilot and it was set to auto-trim, so I figured it would just adjust quickly and learn the new settings.

I flew it and it took off, then started shaking badly. It was strange in that it didn’t spin or anything, but was shaking up and down. I could see the wings “flapping” like the elevons (perhaps both of them since it was flying straight and level) were going back and force in a quick cycle.

Is this the expected result of having two types of servos? Or could something else have caused it?

Here is the log: https://www.dropbox.com/s/zsb78yl98bvjasq/2020-07-04%2012-50-45.log?dl=0

Here is a video: https://www.youtube.com/watch?v=gXtLQc0qlas&feature=youtu.be

Posts: 1

Participants: 1

Read full topic


Mp Fltmodes 1-6 not switching :current PWM =0

$
0
0

@Henk2 wrote:

On my Mp in the setup mode my current PWM show 0 it was on CH 5 and working.I tested the radiolink at10 Ch 5 output and it is working with a servo no problem but on the arducopter side it is not .When i calibrate the radio it show CH 5 calibrating but when I go to flight mode it sow no PWM 0. What am I missing? Pleas help. I have a Quad copter y setup Alian x500

Posts: 1

Participants: 1

Read full topic

Moter spin after 50%

$
0
0

@Yasu wrote:

After setting the stabilizer mode and arming, gradually increase the throttle from 0% to increase the motor speed and take off. However, after putting the arm in Reuters mode and turning the throttle,
Take off when the rotation speed does not increase even if gradually raised from 0% and becomes 50% or more.

Is it possible to take off if the rotation speed does not increase even if the throttle is gradually increased from 0% after the arm is exercised even in the stabilizer mode and it reaches 50% or more?

Posts: 4

Participants: 3

Read full topic

Plane disarm in Air

$
0
0

@Peter2 wrote:

Hi guys… in the last flight, when the plane was fly, I saw No RC Receiver warning and after then Disarmed in the air.
Any idea please

Posts: 6

Participants: 2

Read full topic

Mag Feild Issue

$
0
0

@Peter2 wrote:

I maked my drone by the Aluminum…
the first flight was sucessfully… but after I changed the
WPNAV_SPEED_UP to 5 M/s. The copter acted madly
I checked from the Mag Feild it was between 1700 - 2000
and I saw many warnings message like EKF “variances” compass, position and velocity errors

Posts: 2

Participants: 2

Read full topic

Multi Radio Telemetry Receiver

$
0
0

@eM.Farih wrote:

Dear all,

I want to build a medium UAV that will travel across 200km. I have seen RFD900 could achieve 40km. Is there any solution like applying a repeater to the telemetry in each overlap section (eg in every 40km) with two GCS (one base GCS at the take off and the other one at landing)? or is there any solution to not loss the telemetry connection?

Thank you

Posts: 2

Participants: 2

Read full topic

Viewing all 46700 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>