Commit Graph

52385 Commits

Author SHA1 Message Date
Andrew Tridgell 8cc03726f3 AC_AttitudeControl: added an option for pitch weathervaning
when nose-in or tail-in, if the aircraft has significant pitch
asymmetry in hover then we would spin around in no wind if we use
pitch as an input

this makes pitch input for nose-in and tail-in optional and off by
default to preserve existing behaviour
2022-04-29 08:06:29 +09:00
Andrew Tridgell d75e0c7a1c HAL_ChibiOS: disable fatal exceptions for DMA errors
this zeros-watchdog was caused by a SPI DMA error on STM32F405:

  https://discuss.ardupilot.org/t/crash-with-4-2-0-beta-and-4-3-0-daily-bdshot/83297

we had incorrectly left these internal errors enabled when asserts
were not enabled. That led to a osalSysHalt()

without these we get an spi_fail internal error, caught by the
SPIDevice code
2022-04-29 08:06:29 +09:00
Peter Barker d44ad0a2a7 Plane: do not use guided waypoint for loiter location
Currently this waypoint is set 10,000m away by the avoidance behaviour

Instead, immediately enter loiter mode
2022-04-29 08:06:29 +09:00
Andrew Tridgell 2ee2742707 AP_InertialSensor: catch FIFO overruns on BMI088
we have seen errors where the BMI088 gets out of sync, so that the 3
axes are rotated. The data is shifted by 4 bytes, so that X=Z, Y=X
and Z=Y

this changes the BMI088 to "stop on full" mode, which is what Bosch
use in their example drivers, and also catches FIFO overrun events and
triggers a full FIFO reset. This should fix the problem with the FIFO
sync
2022-04-29 08:06:29 +09:00
Andrew Tridgell 7b757facd2 autotest: fixed annoying gdb pagination on reboot 2022-04-29 08:06:29 +09:00
Randy Mackay 7bd40770d0 Rover: version to 4.2.0-rc1 2022-04-09 17:12:27 +09:00
Randy Mackay e176ab6d77 Rover: 4.2.0-rc1 release notes 2022-04-09 17:12:27 +09:00
Randy Mackay 4b2ae73f21 Copter: version to 4.2.0-rc1 2022-04-09 17:12:27 +09:00
Randy Mackay 1f20ad9b2e Copter: 4.2.0-rc1 release notes 2022-04-09 17:12:27 +09:00
Andrew Tridgell dc765abb90 Plane: prepare for 4.2.0beta5 2022-04-09 17:12:27 +09:00
Andrew Tridgell 73a932c05d Plane: release notes for 4.2.0beta5 2022-04-09 17:12:27 +09:00
李孟晓 2dae778103 AP_HAL_ChibiOS: CUAV-Nora: add usart3 support 2022-04-09 17:12:27 +09:00
Andy Piper 9ce281ae14 AP_HAL_ChibiOS: fix dshot timeout bug where the elapsed pulse is longer than the send time
dshot timeouts should be no longer than the pulse interval
use correct timestamp for dmar send time
2022-04-09 17:12:27 +09:00
Andrew Tridgell eccec866f5 HAL_ChibiOS: incorrect class of class in uart TX timeout
need to call chEvtGetAndClearEventsI() as we are in a system lock
state
2022-04-09 17:12:27 +09:00
Andrew Tridgell f3c19575e9 HAL_ChibiOS: fixed H7 flash storage
this fixes the flash re-init problem when flash storage fills on
H7. It was caused by rejecting writes where one or more of the 32 byte
chunks was not all 0xff but was equal to the current data. That
happens when writing to the sector header in AP_FlashStorage

it also moves the interrupt disable inside the loop to allow for
other interrupts to run between blocks
2022-04-09 17:12:27 +09:00
Andrew Tridgell 5a46280ce3 HAL_ChibiOS: use 16 byte lines for flash storage on H7
this halves the number of flash writes needed, and makes flash storage
twice as space efficient on H7

On H7 we need to write 32 bytes at a time to flash, which corresponds
to 30 bytes of data in AP_FlashStorage. By using a 16 byte storage
line we don't waste as much space
2022-04-09 17:12:27 +09:00
Andrew Tridgell 186f1db6d5 HAL_ChibiOS: increase monitor thread stack by 512
this is needed to ensure that the log writes of MON and WDOG don't
overflow monitor thread stack
2022-04-09 17:12:27 +09:00
Andrew Tridgell ab93818570 HAL_ChibiOS: added expected delays on flash writes
this prevents a long loop internal error on disarm after a large
amount of flash writes when armed on a board with flash storage
2022-04-09 17:12:27 +09:00
Andrew Tridgell 5e76e7aa7b HAL_ChibiOS: disable interrupts during flash operations
we have now shown that interrupts being enabled during flash
operations can cause the infamous "68ms" bug, or watchdog when using a
32 bit timer on boards using flash for storage

The issue is quite repeatable with a load of a very large waypoint
file (over 500 waypoints) using "wp ftpload" in MAVProxy. This puts a
huge load on flash storage.

Our current working theory is that while doing flash writes for
storage on dual-bank we block access to only one bank, so if another
thread uses a timeout function with a short timeout while the flash
write is happening and chVTDoTickI calls code which crosses the flash
bank boundary then it can cause chVTDoTickI to violate the assumption
that no more than CH_CFG_ST_DELTA ticks pass while it is calculating
the value to set in the system timer. In that case we get a delay of a
full timer wrap, which is 68ms on boards with 16 bit timer and 70
minutes on boards with 32 bit timer
2022-04-09 17:12:27 +09:00
Andrew Tridgell e343d9d86b Revert "hwdef: changed MatekH743 to a 32 bit timer"
This reverts commit 7dc5911572.
2022-04-09 17:12:27 +09:00
Andrew Tridgell b497de8c12 HAL_ChibiOS: constrain more timer timeouts 2022-04-09 17:12:27 +09:00
Andrew Tridgell 057340cb1d HAL_ChibiOS: prevent long timeouts in DShot
this prevents bad calculated timeouts in DShot. The timeout would
sometimes come out as 0xFFFFFFFF, which led to an assert and could
block the thread

This fix is meant to be minimilistic to allow it to be merged easily
into 4.2. A better fix would fix all the uint32_t wrap handling in
DShot
2022-04-09 17:12:27 +09:00
Andrew Tridgell 2b4a17fef7 AP_Math: added unsigned versions of constrain functions
sometimes it really does matter that we use constrain_uint32() instead
of constrain_int32(). For example, if we have a value like 0xFFFFFFFF
then the result will be very different

we should use unsigned constrain when dealing with unsigned values
2022-04-09 17:12:27 +09:00
Andrew Tridgell 6a6a5adae0 AP_Logger: fixed @SYS file logging
the key fix is the reset of the fd to -1. Without that fix we only
ever log @SYS/uarts.txt

The timing change is needed to get the files out in a reasonable
time. The function is actually getting called at 100Hz or less, not
1kHz (measured on MatekH743 copter at 400Hz). So we need to run it
faster to get the files logged in a reasonable time
2022-04-09 17:12:27 +09:00
Andy Piper 97ebd35cc5 bootloaders: update spracing h7 extreme bootloader 2022-04-09 17:12:27 +09:00
Andy Piper 4f8c486278 AP_HAL_ChibiOS: spro H7 extreme updates.
cannot currently use both IMUs on spro H7 extreme due to CPU load
2022-04-09 17:12:27 +09:00
Peter Barker 45aebfdf74 AP_AHRS: subtract accel bias from correct ins accel instance
In the case that you have INS_USE indicating IMUs should be used, but
EK3_IMU_MASK leaving some IMUs unused, we subtract the bias from the
wrong INS data
2022-04-09 17:12:27 +09:00
Andrew Tridgell aeed2b1a9d Plane: fixed rudder control when ARMING_RUDDER != 2
when rudder disarm is disabled we should allow full yaw control
regardless of throttle level. We should also only disable left yaw
when throttle is at zero, as right yaw does not indicate pilot may be
trying to disarm
2022-04-09 17:12:27 +09:00
Andrew Tridgell 58e356557a AP_Logger: increase stack of log_io thread by 256
This was seem on omnibusf4pro, it is a bit too close:

  log_io PRI= 59 sp=0x20015CC0 STACK=144/1656
2022-04-09 17:12:27 +09:00
Randy Mackay 32c4261306 Rover: version to 4.2.0-beta3 2022-03-30 19:12:45 +09:00
Randy Mackay 3aa5225a66 Rover: 4.2.0-beta3 release notes 2022-03-30 19:12:45 +09:00
Randy Mackay ec1a669d98 Copter: version to 4.2.0-beta3 2022-03-30 19:12:45 +09:00
Randy Mackay 7c894a24e5 Copter: 4.2.0-beta3 release notes 2022-03-30 19:12:45 +09:00
Bill Geyer 152c98831b AP_Math: add chirp function to support frequency sweeps in systemid and autotune 2022-03-30 19:12:45 +09:00
Bill Geyer eae1e6cda7 AC_Autotune: clean up variable init for dwell 2022-03-30 19:12:45 +09:00
Bill Geyer f782215194 AC_AutoTune: use chirp function in AP_Math for frequency sweeps 2022-03-30 19:12:45 +09:00
Bill Geyer 9d1c560faa Copter: make systemid use new chirp math function 2022-03-30 19:12:45 +09:00
Bill Geyer da7164c1e4 AC_AutoTune: combine dwell_run_test for angle and rate 2022-03-30 19:12:45 +09:00
Bill Geyer 68f0eb9e5d AC_AutoTune: combine dwell_init methods 2022-03-30 19:12:45 +09:00
Bill Geyer 14fea56206 AC_AutoTune:tradheli-streamline gcs messages 2022-03-30 19:12:45 +09:00
Peter Barker cade8b36a0 AC_AutoTune: Vector tidying 2022-03-30 19:12:45 +09:00
Peter Barker 1a84c17fee AC_AutoTune_Heli: use structure assignment to clear structures 2022-03-30 19:12:45 +09:00
Peter Barker 55af020639 AC_AutoTune: use structure assignment for test results 2022-03-30 19:12:45 +09:00
Peter Barker 3686f32671 AC_AutoTune: createstructure to hold specific test's sweep results 2022-03-30 19:12:45 +09:00
Henry Wurzburg 94c0701f17 HWDEF: add SLCAN OTG port, correct defaults.param errors 2022-03-30 19:12:45 +09:00
Andy Piper bb86b35f03 AP_HAL_SITL: correct disable channel maths
unilaterally write rcoutput to appease the sitl gods
2022-03-30 19:12:45 +09:00
Andy Piper 15614bd879 SRV_Channel: don't count disabled channels in mask and setup functions
disable channels that are not in use
2022-03-30 19:12:45 +09:00
Andy Piper 70bba0cc99 AP_HAL_ChibiOS: fix ESCs constantly arming on rover with dshot commands
make sure debug will compile
take into account active channels when configuring bdshot
add channel mask debug output
correct set bdshot telemetry position at startup
make sure all channels in a bdshot group are pulled high to prevent spurious pulses
2022-03-30 19:12:45 +09:00
Randy Mackay d62c543031 Rover: balance bot stands in acro with no position estimate 2022-03-30 19:12:45 +09:00
AndKe 1805ff4e6d AP_HAL_ChibiOS: add OREOLED to CubeGreen 2022-03-30 19:12:45 +09:00