1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-19 14:25:13 +03:00
Commit graph

75 commits

Author SHA1 Message Date
Pawel Spychalski (DzikuVx)
8ae3f1ccdc Drop dependency of PIDs MSP frame 2020-05-11 14:18:23 +02:00
Pawel Spychalski (DzikuVx)
73228b2f8f Correctly applyu singe settings 2020-03-02 19:25:09 +01:00
Pawel Spychalski (DzikuVx)
cc4bd47363 Updated presets 2020-03-02 19:19:23 +01:00
Pawel Spychalski (DzikuVx)
3bb1d67c67 Preset for Mini AR Wing 2020-02-06 10:09:00 +01:00
Alberto García Hierro
0e01133fc9 Make tab loading async safe and add a small animation
Tab loading was relying on replacing the contents of '#content'
with the loading indicator, then replacing it with the loading tab
content and blocking rendering until the tab was ready by not
yielding. This is problematic for tabs that load some data
asynchronously, like PID and OSD.

Instead, put the loading indicator in front of everything else
and load new content inside '#content' next to the loading indicator
(but without showing it). Once the content and data are fully loaded
we fade out the loading indicator with a 0.4s long animation and
then we remove. This works for both synchronous and asynchonous
loading of tabs.
2020-01-21 18:19:06 +00:00
Pawel Spychalski (DzikuVx)
7620ab024b Preset for Dart 250g 2019-12-23 13:37:53 +01:00
Olivier C
b6a2d5dd9e Typo and grammar fixes (#785) 2019-05-31 20:56:25 +02:00
Pawel Spychalski (DzikuVx)
0d827cc07c Disable Yaw LPF on miniquad presets: 5 6 and 7 inches 2019-04-29 22:19:23 +02:00
Pawel Spychalski (DzikuVx)
f1fc61939c Lower d gains for 7 inch endurance 2019-04-10 15:29:47 +02:00
Pawel Spychalski (DzikuVx)
370c805461 Presets update for FF component and various fixes 2019-03-19 13:35:17 +01:00
Pawel Spychalski (DzikuVx)
49b9935878 Update profile defaults 2019-03-09 12:59:45 +01:00
Pawel Spychalski (DzikuVx)
d242ecc241 Add FF component to VEL XY 2019-03-09 11:57:33 +01:00
Pawel Spychalski (DzikuVx)
ae8f5892b0 7 inch freestyle preset 2019-02-27 20:49:16 +01:00
Pawel Spychalski (DzikuVx)
d6799e98cd Cleaned up presets 2019-02-27 20:46:14 +01:00
Pawel Spychalski (DzikuVx)
97c622fbb1 1.7 family removed 2019-02-26 09:12:04 +01:00
Pawel Spychalski (DzikuVx)
6fcb542d57 Preset for mini drak 2018-11-11 18:56:46 +01:00
Pawel Spychalski (DzikuVx)
48991a6285 Enable gyro sync by default in presets 2018-11-11 12:27:31 +01:00
Pawel Spychalski (DzikuVx)
d3795eea42 updated defaults to match fc changes for 2.0 2018-07-20 23:30:19 +02:00
Pawel Spychalski (DzikuVx)
912dcb2cbb Updated yaw P gain 2018-07-20 23:22:21 +02:00
Pawel Spychalski (DzikuVx)
aba8af0b63 Updated 7inch preset 2018-07-20 23:16:47 +02:00
Alberto García Hierro
be1cb6afc4 Add maximum PITCH and ROLL angles to the PID tuning tab
- Add Pitch and Roll angles below the rates
- Add help messages indicating that these values constrain the
maximum inclination during navigation.
- Add help messages for navigation max bank/climb/dive angles
- Add help for pitch2thr
2018-07-09 14:02:53 +01:00
Pawel Spychalski (DzikuVx)
3febdda531 S800 Flying Wing Preset 2018-06-18 14:28:02 +02:00
Pawel Spychalski (DzikuVx)
7f89a913e1 Stage2 added to profile 2018-05-13 14:21:26 +02:00
Pawel Spychalski (DzikuVx)
f4a840215f Slightly boosted Igain 2018-05-13 14:04:39 +02:00
Pawel Spychalski (DzikuVx)
2ceceff416 5inch performance 2018-05-13 14:04:39 +02:00
Pawel Spychalski (DzikuVx)
cc0b56552b Updated 5inch Racer 2018-05-13 14:04:39 +02:00
Pawel Spychalski (DzikuVx)
4640de33d0 Other presets updated 2018-05-07 13:46:29 +02:00
Pawel Spychalski (DzikuVx)
aed550e51a Updated 5inch preset 2018-05-07 13:20:19 +02:00
Pawel Spychalski (DzikuVx)
00ac2379ab 7" preset 2018-05-02 20:41:39 +02:00
Pawel Spychalski (DzikuVx)
064ff36add updated defaults 2018-04-13 14:25:48 +02:00
Sergej Pozdnyakov
7070bf3790 fix #354, fix 0 height/width window size, fix load empty mission from eeprom 2018-02-27 21:02:20 +03:00
Konstantin Sharlaimov (DigitalEntity)
9942e9508e Calibration tab. Squashed commit. Kudos to @DzikuVx, @skaman82, @Afinogen 2017-12-31 17:19:49 +10:00
Alberto García Hierro
850632bfee Use async URL loading for the JSON setting definitions
Chrome disallows synchronous URL loading, so all functions requiring
the JSON definitions for the settings over MSPv2 need to be async.
This required rewriting MSPHelper._getSetting() and all its callers
using promises.

Fixes #284
2017-10-17 19:49:50 +01:00
Alberto García Hierro
a44a290c8c Use MSPV2_SET_SETTING to set small_angle to 180 on FW presets
- Add a json file with the types of all settings, generated by
the settings generator on INAV.
- Implement MSPV2_SETTING and MSPV2_SET_SETTING, which gives us
access to any value exposed via settings.
- Use this to set small_angle to 180 in FW presets.
2017-10-11 18:45:49 +01:00
Alberto García Hierro
f4c07566db Set MOTOR_STOP and AIRMODE features in all FW presets
AIRMODE will only be set if INAV version is > 1.7.2, since it
does nothing in previous versions even when the feature is
advertised.
2017-08-21 00:55:28 +02:00
Pawel Spychalski (DzikuVx)
357dc98c24 fixes #206 2017-07-12 19:06:57 +02:00
Pawel Spychalski (DzikuVx)
46e616bc7f fixes #216 2017-07-12 18:47:09 +02:00
Paweł Spychalski
99da3a0311 Merge pull request #188 from oleost/patch-5
Mention that they change pwm refresh for servos.
2017-04-24 10:22:26 +02:00
Ole-Petter
48df85c80f Update profiles.js
Added in description for tricopter that they apply faster pwm for servos.
2017-04-24 10:17:06 +02:00
Pawel Spychalski (DzikuVx)
40c5dde34b updated 5in GPS preset 2017-04-09 13:49:51 +02:00
Pawel Spychalski (DzikuVx)
3fb9dcc58d updated GPS 5" profile 2017-03-15 19:01:21 +01:00
Pawel Spychalski (DzikuVx)
c6dccdefb4 proreess 2017-03-12 09:53:22 +01:00
Pawel Spychalski (DzikuVx)
59f93021e8 Updated 12" and 10" profiles defaults for better initial behavior 2017-03-07 13:49:03 +01:00
oleost
e9d4ba5cc2 Fix typo 2017-02-25 09:41:04 +01:00
Pawel Spychalski (DzikuVx)
5911fca6f5 Tricopter presets 2017-02-21 15:24:40 +01:00
Pawel Spychalski (DzikuVx)
94ec0199a2 updated Z84 preset 2017-02-19 15:45:44 +01:00
oleost
9419b3acb0 Update profiles.js
Need help setting:

set tpa_rate = 33
set tpa_breakpoint = 1300
set gyro_hardware_lpf = 20HZ
2017-02-19 14:55:04 +01:00
Pawel Spychalski (DzikuVx)
ec7f46f108 dual set of defaults for PIDs: FW and MR 2017-01-29 19:01:09 +01:00
Pawel Spychalski (DzikuVx)
6e5d25d104 updated PID defaults 2017-01-29 15:33:59 +01:00
Pawel Spychalski (DzikuVx)
bb1c674e22 fixes #122 2017-01-29 15:15:29 +01:00