Skip to content

Commit 81b85de

Browse files
authoredJul 20, 2017
Merge pull request #1912 from iNavFlight/development
Release 1.7.2
2 parents 48e1fef + f0b692a commit 81b85de

File tree

321 files changed

+6358
-5799
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+6358
-5799
lines changed
 

‎Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,7 @@ COMMON_SRC = \
590590
fc/rc_controls.c \
591591
fc/rc_curves.c \
592592
fc/runtime_config.c \
593+
fc/stats.c \
593594
flight/failsafe.c \
594595
flight/hil.c \
595596
flight/imu.c \
@@ -622,6 +623,7 @@ COMMON_SRC = \
622623
rx/sumd.c \
623624
rx/sumh.c \
624625
rx/xbus.c \
626+
rx/eleres.c \
625627
scheduler/scheduler.c \
626628
sensors/acceleration.c \
627629
sensors/battery.c \
@@ -647,8 +649,8 @@ HIGHEND_SRC = \
647649
common/colorconversion.c \
648650
common/gps_conversion.c \
649651
drivers/display_ug2864hsweg01.c \
650-
drivers/sonar_hcsr04.c \
651-
drivers/sonar_srf10.c \
652+
drivers/rangefinder_hcsr04.c \
653+
drivers/rangefinder_srf10.c \
652654
io/dashboard.c \
653655
io/displayport_max7456.c \
654656
io/displayport_msp.c \
@@ -725,7 +727,6 @@ STM32F30x_COMMON_SRC = \
725727
drivers/bus_i2c_stm32f30x.c \
726728
drivers/dma.c \
727729
drivers/gpio_stm32f30x.c \
728-
drivers/light_ws2811strip_stm32f30x.c \
729730
drivers/serial_uart_stm32f30x.c \
730731
drivers/system_stm32f30x.c \
731732
drivers/timer_stm32f30x.c

‎docs/Blackbox.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ logging device to be recorded, or to a dataflash chip which is present on some f
99

1010
After your flight, you can view the resulting logs using the interactive log viewer:
1111

12-
https://github.com/cleanflight/blackbox-log-viewer
12+
https://github.com/iNavFlight/blackbox-log-viewer
1313

1414
You can also use the `blackbox_decode` tool to turn the logs into CSV files for analysis, or render your flight log as a
1515
video using the `blackbox_render` tool. Those tools can be found in this repository:
@@ -19,7 +19,7 @@ https://github.com/cleanflight/blackbox-tools
1919
## Logged data
2020
The blackbox records flight data on every iteration of the flight control loop. It records the current time in
2121
microseconds, P, I and D corrections for each axis, your RC command stick positions (after applying expo curves),
22-
gyroscope data, accelerometer data (after your configured low-pass filtering), barometer and sonar readings, 3-axis
22+
gyroscope data, accelerometer data (after your configured low-pass filtering), barometer and rangefinder readings, 3-axis
2323
magnetometer readings, raw VBAT and current measurements, RSSI, and the command being sent to each motor speed
2424
controller. This is all stored without any approximation or loss of precision, so even quite subtle problems should be
2525
detectable from the fight data log.
@@ -268,9 +268,9 @@ while in flight.
268268
## Viewing recorded logs
269269
After your flights, you'll have a series of flight log files with a .TXT extension.
270270

271-
You can view these .TXT flight log files interactively using your web browser with the Cleanflight Blackbox Explorer:
271+
You can view these .TXT flight log files interactively using your web browser with the INAV Blackbox Explorer:
272272

273-
https://github.com/cleanflight/blackbox-log-viewer
273+
https://github.com/iNavFlight/blackbox-log-viewer
274274

275275
This allows you to scroll around a graphed version of your log and examine your log in detail. You can also export a
276276
video of your log to share it with others!
@@ -281,4 +281,4 @@ another software package.
281281

282282
You'll find those tools along with instructions for using them in this repository:
283283

284-
https://github.com/cleanflight/blackbox-tools
284+
https://github.com/iNavFlight/blackbox-log-viewer

0 commit comments

Comments
 (0)
Please sign in to comment.