Commit graph

2712 commits

Author SHA1 Message Date
Dominic Clifton
3f0754d295 Replace global flags with stateFlags, flightModeFlags and armingFlags.
Each flag was previously a whole byte, now all of the flags only take up
4 bytes as they are represented by bit masks.

This is cleaner because the different kind of flags are now separated.

Additionally this changes the behaviour of arming slightly.  When using
a switch to arm the aircraft will not arm unless the switch has been in
the off state once.  This prevents arming if you power the aircraft with
a low throttle and the switch in the on position.
2014-08-24 12:11:30 +01:00
Dominic Clifton
1ea014ae25 Support MSP telemetry on ports marked as TELEMETRY instead of MSP, this
follows the pattern that HoTT and FrSky use.

Previously MSP telemetry was actually output on the MSP port, NOT the
telemetry port.

Baudrate for MSP telemetry currently fixed at 19200.
2014-08-23 01:14:06 +01:00
Dominic Clifton
4604403098 Merge branch 'master' into msp-on-multiple-ports
Conflicts:
	src/main/config/config.c
	src/main/io/serial_msp.c
2014-08-22 22:30:33 +01:00
Dominic Clifton
26cbe71858 Fix for resetting config to defaults.
This was missed in f51efaa7c0
2014-08-22 22:26:35 +01:00
Dominic Clifton
f51efaa7c0 Instead of copying a profile from the master config into memory again,
just use it in-place.  This saves ~308bytes of memory.

Prior to this there were 4 profiles in ram all the time, the 3 main
profiles and a copy of one of them.

This commit was aided by a side effect of the work done to clean up the
output of the cli dump command since it is now easy to conditionally
apply the changes to the memory addressed used to read/write cli
variables.  See 8c3a869251.
Conflicts:

	src/main/io/serial_msp.c
2014-08-22 22:05:35 +01:00
dongie
bc34fc3744 making boxes[] in serial.c static const to move them to rodata and free ~200bytes RAM 2014-08-22 22:01:29 +01:00
Dominic Clifton
71e7feebd9 Move 'boxes' out of ram and into flash - saves quite a bit of ram. 2014-08-22 22:01:04 +01:00
Dominic Clifton
8ebdb245c2 Instead of copying a profile from the master config into memory again,
just use it in-place.  This saves ~308bytes of memory.

Prior to this there were 4 profiles in ram all the time, the 3 main
profiles and a copy of one of them.

This commit was aided by a side effect of the work done to clean up the
output of the cli dump command since it is now easy to conditionally
apply the changes to the memory addressed used to read/write cli
variables.  See 8c3a869251.
2014-08-22 21:53:23 +01:00
dongie
b85c5243db making boxes[] in serial.c static const to move them to rodata and free ~200bytes RAM 2014-08-22 21:06:37 +01:00
Dominic Clifton
11a00e2697 Move 'boxes' out of ram and into flash - saves quite a bit of ram. 2014-08-22 21:05:55 +01:00
Dominic Clifton
f7b6ed901e Merge branch 'master' into msp-on-multiple-ports 2014-08-22 19:19:42 +01:00
Dominic Clifton
f1af9d434f Removing cruft from makefile that was accidentally committed when
working on the CJMCU target.
2014-08-22 19:19:20 +01:00
Dominic Clifton
13af9f8ff9 Delete unused code. 2014-08-20 14:52:37 +01:00
Dominic Clifton
8d5b2283ec Reduce code size and ram usage of PWM supervisor code. 2014-08-20 14:51:20 +01:00
Dominic Clifton
c0a349ed60 Fix PWM failsafe by monitoring for missing pwm rise/fall signal events. 2014-08-20 01:32:27 +01:00
Dominic Clifton
aa719dfe4f CJMCU - Use 64k/128k flash specific linker scripts scripts 2014-08-18 21:04:35 +01:00
Dominic Clifton
acc285be4a CJMCU - Update PPM/PWM mappings.
Bench tested for PPM & 4 Motor outputs only.
2014-08-18 21:03:51 +01:00
Dominic Clifton
349b20186d Comment cleanup 2014-08-18 19:09:12 +01:00
Dominic Clifton
0b353341f8 Limit MSP ports to 2 for normal usage scenarios. 2014-08-14 00:50:17 +01:00
Dominic Clifton
7453e98b3b Update serial and msp code to allow MSP on multiple ports.
Work in progress.  In testing using bluetooth on uart2 and uart1
connected to configurator it was observed that there is corrupted
responses being sent via uart2 - ez-gui shows some garbled data for the
box names.  updates appear sluggish in ez-gui but some correct data is
getting through.

Enabled with:

set serial_port_2_scenario = 8
save
2014-08-14 00:38:42 +01:00
Dominic Clifton
871f3024af OLIMEXINO - Document shield sonar port pinout. 2014-08-13 22:27:20 +01:00
Dominic Clifton
c41d28c5dc Mention Flip32+ in sonar docs. 2014-08-13 22:04:48 +01:00
Dominic Clifton
d0338eac19 Cleanup sonar support for Naze/Flip32/Olimexino. Add Sonar
documentation.
2014-08-13 22:01:39 +01:00
Ben Hitchcock
74ef19bc34 Bugfix when using sonar as well as rx-parallel-pwm
This allows sonar to be used at the same time as parallel PWM for the receiver.  If the RX_PARALLEL_PWM feature is enabled, then the sonar system uses motor ports 5 and 6, otherwise it uses receiver pins 7 and 8.
2014-08-13 19:25:43 +01:00
Dominic Clifton
95852d0bdf CC3D - Change the default alignment of the board to match the default
open pilot alignment.

This makes it easier for new users to adopt cleanflight without having
to look up the alignment cli settings or rotate their boards in their
existing aircraft.

See discussion here:

http://forums.openpilot.org/topic/43569-baseflightcleanflight-ported-to-cc3d/?p=360886
2014-08-13 17:53:05 +01:00
Dominic Clifton
6ff9483425 Avoid using initialialised pointer in sonar interrupt handler. 2014-08-13 16:24:20 +01:00
Dominic Clifton
98e51fb2dc Replace qsort with simple bubble sorting function to reduce code size. 2014-08-08 00:33:58 +01:00
Dominic Clifton
dc0f461c73 Update serial port handling for boards with only 2 ports. 2014-08-07 23:32:14 +01:00
Dominic Clifton
5871f90465 Adding buzzer documentation. 2014-08-07 20:55:38 +01:00
Dominic Clifton
de64e19db7 Adding CC3D and Naze32 preliminary docs. 2014-08-07 20:42:48 +01:00
Dominic Clifton
8c6c14b343 Update documentation. 2014-08-07 20:21:16 +01:00
Dominic Clifton
b01724681a CC3D - Support USART3 instead of USART2.
This has highlighted that the existing codebase is quite targeted
towards systems that use USART1 and 2.  Annoyingly the inverter is on
USART1 and the sbus code requires callbacks so still won't work yet.
2014-08-07 19:17:46 +01:00
Dominic Clifton
9906294cd8 Split navigation functionality from io/gps.c into flight/navigation.c.
gps.c now only has code that deals with gps hardware, state and
messaging.
navigation.c  now only has code dealing with flight
navigation/waypoints/home/hold/etc
2014-08-07 14:23:05 +01:00
Dominic Clifton
fe9df45a24 Latest binary with fixed current sensor. 2014-08-06 22:13:56 +01:00
Dominic Clifton
ac61a5ae5b Fixing current meter, vbatCycleTime was not being reset and the ADC
index was wrong.

See 5cc9750d12
2014-08-06 22:12:41 +01:00
Dominic Clifton
90f020f2ff Latest Naze/Flip32+ binary - many improvements! Primarily better
Altitude-Hold, Better PPM support.  Sonar alt-hold.  Current sensor
FrSky telemetry.  Cli cleanup (dump profile/master).  Support for SBUS
inverter.  Smaller code size - using GCC Link Time Optimisation and GCC
nano specs.  Updated WS281 LED Support.
2014-08-03 00:33:28 +01:00
Dominic Clifton
5b51780780 Adding FrSky main battery voltage code back in ('FAS' in telemetry
screen on OpenTX) - it was disabled in baseflight commits
a753661c23c428ede8c2b72e95d3e31f6c8b894e and removed  in
4ae03bb00e5616796989255d4101c4ed51162d50
2014-08-03 00:22:36 +01:00
Dominic Clifton
8c3a869251 Update CLI so that you can dump all, master or profile settings.
Cleanup '...' strings to reduce binary size.  Change version
information.

With this change it's much more obvious what is and what is not included
in a profile.

Examples:

dump
dump profile
dump master
2014-08-02 12:39:18 +01:00
Dominic Clifton
81cf29be70 Avoid error message appearing incorrectly after showing cli commands. 2014-08-02 12:39:17 +01:00
Dominic Clifton
7e5eeb53b2 Merge pull request #29 from nebbian/feature-change-profile-beep-bugfix
Bugfix for wrong number of beeps when changing profiles
2014-08-02 10:03:26 +01:00
Dominic Clifton
b026a8b159 Merge branch 'nebbian-feature-cli-get' 2014-08-02 10:02:36 +01:00
Dominic Clifton
01643b8621 Re-use existing code to show all matching cli commands for 'get' instead of exact match.
e.g.  'get deadband' will show all varialbles with the word 'deadband' in it.  exact match only required when setting variables.
2014-08-02 10:00:37 +01:00
Ben Hitchcock
df833a6178 Bugfix for wrong number of beeps when changing profiles
When changing profiles with the sticks, CleanFlight was beeping 0 times for profile
1, once for profile 2, and twice for profile 3.  This wasn't intuitive, and was
different to how Baseflight beeps when changing profiles.
This change makes baseflight give the same number of beeps as the profile number
that you change into.
2014-08-02 14:11:36 +08:00
Ben Hitchcock
35a4aa60f9 Adding 'get' command to the CLI, to view a single variable.
This enables the user to type "get variablename" in the CLI, which then shows the value of that variable (or a message saying "Variable 'variablename' not found").
This is easier for the user when they just want to see a single variable, instead of typing 'dump' and then having to parse a big long list of data.  It is also more intuitive than typing 'set variablename', as this feels unsafe.
2014-08-02 13:59:46 +08:00
Dominic Clifton
582503c0e6 Delete unused pwm rssi code - rssi adc is used instead since the rate
used (8khz) by some frsky receivers is too fast to be detected using the
pwm rssi code without bogging down the cpu in interrupt handlers.
2014-08-02 01:38:09 +01:00
Dominic Clifton
58e0900d5e CC3D - fixing two unused variable compiler warnings. 2014-08-02 00:46:01 +01:00
Dominic Clifton
d762da7dac Fix build relating to inverter/pwm rssi compiler errors. 2014-08-02 00:43:39 +01:00
dongie
1eea083fd9 On second thought, no need to make inverter configurable. only sbus will use it, and the driver can set inversion automatically. 2014-08-02 00:43:32 +01:00
dongie
0dc0a1e028 allow controlling external XOR gate connected to PB2 (BOOT1) to invert USART2_RX signal on F1. Currently used by sbus driver. 2014-08-02 00:43:21 +01:00
Dominic Clifton
25ede3e6e0 Fix PWM in RSSI - accidentally excluded when adding CJMCU support. 2014-08-02 00:43:06 +01:00