Skip to content

Commit 479d607

Browse files
Merge pull request #690 from iNavFlight/development
Release version 1.3
2 parents cac4380 + 14dc698 commit 479d607

File tree

209 files changed

+8175
-5279
lines changed

Some content is hidden

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

209 files changed

+8175
-5279
lines changed

.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
env:
22
- TARGET=CC3D
3+
- TARGET=CJMCU
34
- TARGET=NAZE
45
- TARGET=STM32F3DISCOVERY
56
- TARGET=RMDO
67
- TARGET=SPRACINGF3
78
- TARGET=SPRACINGF3EVO
89
- TARGET=SPARKY
910
- TARGET=FURYF3
10-
- TARGET=FURYF3_SPIFLASH
1111
- TARGET=RCEXPLORERF3
12+
- TARGET=REVO
1213

1314
# use new docker environment
1415
sudo: false
@@ -30,10 +31,10 @@ language: cpp
3031
compiler: clang
3132

3233
before_install:
33-
- curl --retry 10 --retry-max-time 120 -L "https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q2-update/+download/gcc-arm-none-eabi-4_9-2015q2-20150609-linux.tar.bz2" | tar xfj -
34+
- curl --retry 10 --retry-max-time 120 -L "https://launchpad.net/gcc-arm-embedded/5.0/5-2016-q2-update/+download/gcc-arm-none-eabi-5_4-2016q2-20160622-linux.tar.bz2" | tar xfj -
3435

3536
install:
36-
- export PATH=$PATH:$PWD/gcc-arm-none-eabi-4_9-2015q2/bin
37+
- export PATH=$PATH:$PWD/gcc-arm-none-eabi-5_4-2016q2/bin
3738

3839
before_script: arm-none-eabi-gcc --version
3940
script: ./.travis.sh

CREDITS

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
This is at least a partial credits-file of people that have contributed to the INAV project.
2+
If you believe you should be on this list - feel free to open a PR updating it. For faster
3+
inclusion into this list please provide information about which part of code belongs to you.
4+
5+
Albert Kravcov
6+
Alex Gorbatchev
7+
Alex Zaitsev
8+
Alexander Fedorov
9+
Andre Bernet
10+
Andreas Tacke
11+
Andrew Payne
12+
Austin St. Aubin
13+
Bas Huisman
14+
Ben Hitchcock
15+
Boris B
16+
Brnadon Miller
17+
ChiggerPepi
18+
Chris Campbell
19+
Chris Mavrakis
20+
Chris Nisbet
21+
Chris Penny
22+
Damjan Adamic
23+
Dave Pitman
24+
David Bieber
25+
Davide Bertola
26+
Denis Kisselev
27+
Dominic Clifton
28+
Frank Zhao
29+
Fredrik Steen
30+
Gareth Wilkins
31+
Gaël James
32+
Gregor Ottmann
33+
Hyon Lim
34+
James Harrison
35+
Jan Staal
36+
Jeremy Waters
37+
Joe Poser
38+
Joel Fuster
39+
Johannes Kasberger
40+
Jonas Harnesk
41+
Jonathan Hudson
42+
Joshua Bardwell
43+
Juan González
44+
Kemal Hadimli
45+
Kieran Moore
46+
Konstantin Sharlaimov
47+
Krzysztof Rosinski
48+
Kyle Manna
49+
Larry Davis
50+
Marc Egli
51+
Mark Williams
52+
Martin Budden
53+
Matthew Evans
54+
Mauro Mombelli
55+
Max Winterstein
56+
Michael Corcoran
57+
Michael Hope
58+
Michael Jakob
59+
Miha Valencic
60+
Mikael Blomqvist
61+
Moritz Ulrich
62+
Moshen Chan
63+
Nicholas Sherlock
64+
Paul Fertser
65+
Paul Rogalinski
66+
Pawel Spychalski
67+
Petr Ledvina
68+
Phillip Jones
69+
Pierre Hugo
70+
Richard Birkby
71+
Richard Lehey
72+
Richard Marko
73+
Rimas Avizienis
74+
Sam Cook
75+
Sami Korhonen
76+
Samuel Brucksch
77+
Scott Shawcroft
78+
Sean Vig
79+
Stefan Grufman
80+
Steve Amor
81+
Thomas Buck
82+
Trey Marc
83+
Tuomas Kuosmanen
84+
Zap Andersson

Makefile

+20-7
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ BIN_DIR = $(ROOT)/obj
5151
CMSIS_DIR = $(ROOT)/lib/main/CMSIS
5252
INCLUDE_DIRS = $(SRC_DIR) \
5353
$(ROOT)/src/main/target
54-
LINKER_DIR = $(ROOT)/src/main/target
54+
LINKER_DIR = $(ROOT)/src/main/target/link
5555

5656
# default xtal value for F4 targets
5757
HSE_VALUE = 8000000
@@ -332,6 +332,10 @@ ifneq ($(FLASH_SIZE),)
332332
DEVICE_FLAGS := $(DEVICE_FLAGS) -DFLASH_SIZE=$(FLASH_SIZE)
333333
endif
334334

335+
ifneq ($(HSE_VALUE),)
336+
DEVICE_FLAGS := $(DEVICE_FLAGS) -DHSE_VALUE=$(HSE_VALUE)
337+
endif
338+
335339
TARGET_DIR = $(ROOT)/src/main/target/$(BASE_TARGET)
336340
TARGET_DIR_SRC = $(notdir $(wildcard $(TARGET_DIR)/*.c))
337341

@@ -371,6 +375,9 @@ COMMON_SRC = \
371375
common/typeconversion.c \
372376
common/streambuf.c \
373377
config/config.c \
378+
config/feature.c \
379+
config/config_eeprom.c \
380+
config/parameter_group.c \
374381
fc/runtime_config.c \
375382
drivers/logging.c \
376383
drivers/adc.c \
@@ -384,6 +391,7 @@ COMMON_SRC = \
384391
drivers/io.c \
385392
drivers/light_led.c \
386393
drivers/rx_nrf24l01.c \
394+
drivers/rx_spi.c \
387395
drivers/rx_xn297.c \
388396
drivers/pwm_mapping.c \
389397
drivers/pwm_output.c \
@@ -392,41 +400,46 @@ COMMON_SRC = \
392400
drivers/serial.c \
393401
drivers/serial_uart.c \
394402
drivers/sound_beeper.c \
403+
drivers/stack_check.c \
395404
drivers/system.c \
396405
drivers/timer.c \
406+
drivers/io_pca9685.c \
397407
flight/failsafe.c \
398408
flight/imu.c \
399409
flight/hil.c \
400410
flight/mixer.c \
411+
flight/servos.c \
401412
flight/pid.c \
402413
io/beeper.c \
414+
fc/msp_fc.c \
403415
fc/rc_controls.c \
404416
fc/rc_curves.c \
417+
fc/fc_tasks.c \
405418
io/serial.c \
406419
io/serial_4way.c \
407420
io/serial_4way_avrootloader.c \
408421
io/serial_4way_stk500v2.c \
409422
io/serial_cli.c \
410-
io/serial_msp.c \
411423
io/statusindicator.c \
424+
io/pwmdriver_i2c.c \
425+
msp/msp_serial.c \
412426
rx/ibus.c \
413427
rx/jetiexbus.c \
414428
rx/msp.c \
415-
rx/nrf24.c \
416429
rx/nrf24_cx10.c \
417430
rx/nrf24_inav.c \
418431
rx/nrf24_h8_3d.c \
419432
rx/nrf24_syma.c \
420433
rx/nrf24_v202.c \
421434
rx/pwm.c \
422435
rx/rx.c \
436+
rx/rx_spi.c \
423437
rx/sbus.c \
424438
rx/spektrum.c \
425439
rx/sumd.c \
426440
rx/sumh.c \
427441
rx/xbus.c \
428442
scheduler/scheduler.c \
429-
scheduler/scheduler_tasks.c \
430443
sensors/acceleration.c \
431444
sensors/battery.c \
432445
sensors/boardalignment.c \
@@ -463,7 +476,8 @@ HIGHEND_SRC = \
463476
telemetry/hott.c \
464477
telemetry/smartport.c \
465478
telemetry/mavlink.c \
466-
telemetry/ltm.c
479+
telemetry/ltm.c \
480+
telemetry/ibus.c
467481

468482
ifeq ($(TARGET),$(filter $(TARGET),$(F4_TARGETS)))
469483
VCP_SRC = \
@@ -561,7 +575,6 @@ TARGET_SRC += $(VCP_SRC)
561575
endif
562576
# end target specific make file checks
563577

564-
565578
# Search path and source files for the ST stdperiph library
566579
VPATH := $(VPATH):$(STDPERIPH_DIR)/src
567580

@@ -688,7 +701,7 @@ all: $(VALID_TARGETS)
688701
$(VALID_TARGETS):
689702
echo "" && \
690703
echo "Building $@" && \
691-
$(MAKE) -j binary hex TARGET=$@ && \
704+
$(MAKE) -j TARGET=$@ && \
692705
echo "Building $@ succeeded."
693706

694707
## clean : clean up all temporary / machine-generated files

docs/Board - OMNIBUS.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Board - OMNIBUS F3
2+
3+
## Hardware Features
4+
5+
Refer to the product web page:
6+
[OMNIBUS AIO F3 Flight Control](http://shop.myairbot.com/index.php/flight-control/cleanflight-baseflight/omnibusv11.html)
7+
8+
### Hardware Notes
9+
10+
There are few things to note on how things are connected on the board.
11+
12+
1. VBAT (J4)
13+
This is a battery input to the board, and is also a input to voltage sensor.
14+
15+
2. J11 Power distribution
16+
The RAM is user defined power rail, and all RAM through holes (J6, J7 and J11) are connected together. By connecting 5V or VBAT to RAM at J11, the RAM becomes 5V or VBAT power rail respectively. The VBAT on J11 can also be used to power the Board if necessary.
17+
18+
3. RSSI (J4)
19+
The pin is labelled as RSSI, but it will not be used for RSSI input for a hardware configuration limitation. In this document, the "RSSI" is used to indicate the pin location, not the function.
20+
21+
4. UART1 in boot-loader/DFU mode
22+
The UART1 is scanned during boot-loader/DFU mode, together with USB for possible interaction with a host PC. It is observed that devices that autonomously transmits some data, such as GPS, will prevent the MCU to talk to the USB. It is advised not to connect or disconnect such devices to/from UART1. UART2 is safe from this catch.
23+
24+
## iNav Specific Target Configuration
25+
26+
The first support for the OMNIBUS F3 appeared in BetaFlight.
27+
The OMNIBUS target in iNav has different configuration from the BetaFlight support, to maximize the hardware resource utilization for navigation oriented use cases.
28+
29+
[PIN CONFIGURATION PIC HERE]
30+
31+
### PWM Outputs
32+
33+
Six PWM outputs (PWM1~PWM6) are supported, but PWM5 and PWM6 is not available when UART3 is in use.
34+
PWM7 and PWM8 are dedicated for I2C; in this document, they are used to indicate the pin location, not the function.
35+
36+
Note: Tested only for QUAD-X configuration.
37+
38+
### Hardware UART Ports
39+
40+
PPM/SBUS jumper for J8 is assumed to be configured for PPM (SBUS=R18 removed).
41+
42+
| UART | Location | Note |
43+
|-------|----------|-------------------|
44+
| UART1 |J13 | |
45+
| UART2 |J12 | |
46+
| UART3 |J22 | PWM5=TX3,PWM6=RX3 |
47+
48+
All UARTs are Serial RX capable.
49+
50+
### I2C
51+
52+
I2C is available on J22 PWM7 and PWM8
53+
54+
|signal | Location | Alt. Location |
55+
|-------|------------|---------------|
56+
|SCL | J22 (PWM7) | J3 (SCL) |
57+
|SDA | J22 (PWM8) | J3 (SDA) |
58+
59+
### SONAR
60+
61+
SONAR is supported when NOT using PPM.
62+
63+
|signal | Location |
64+
|-------|------------|
65+
|TRIG | J8 (PPM) |
66+
|ECHO | J4 (RSSI) |
67+
68+
5V sonar can be connected directly without inline resistors.
69+
70+
### OSD
71+
72+
Integrated OSD is not supported yet.
73+
74+
### RSSI Sensor Input
75+
76+
The RSSI sensor adc is not supported due to the hardware configuration limitation.

docs/Board - Paris Air Hero 32 F3.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Board - Paris Air Hero 32 / Acro Naze 32 Mini
2+
3+
This is the AIR3 PARIS Sirius AirHERO 32 F3 board from MultiWiiCopter
4+
Source: http://www.multiwiicopter.com/products/air-hero-32-f3-spi-flight-controller
5+
6+
## Sensors
7+
8+
MPU6500 via SPI interface.
9+
BMP280 via SPI interface
10+
11+
## Ports
12+
13+
6 x 3pin ESC / Servo outputs
14+
1 x 8pin JST connector (PPM/PWM/UART2)
15+
1 x 4pin JST connector (UART3)
16+
17+
## I2C bus
18+
19+
I2C bus is made available with a special target - AIRHEROF3_QUAD. This target limits motor outputs to 4 and adds I2C bus at M5/M6 connectors.
20+
21+
## Pinouts
22+
23+
The 10 pin RC I/O connector has the following pinouts when used in RX_PPM/RX_SERIAL mode.
24+
25+
From right to left when looking at the socket from the edge of the board.
26+
27+
| Pin | Function | Notes |
28+
| --- | -------------- | -------------------------------- |
29+
| 1 | Ground | |
30+
| 2 | +5V | |
31+
| 3 | RX_PPM | Enable `feature RX_PPM` |
32+
| 4 | RSSI_ADC | Enable `feature RSSI_ADC`. Connect to the output of a PWM-RSSI conditioner, 0v-3.3v input |
33+
| 5 | USART2 TX | |
34+
| 6 | USART2 RX | |
35+
| 7 | LED_STRIP | Enable `feature LED_STRIP` |
36+
| 8 | unused | |
37+
38+
39+
## Serial Ports
40+
41+
| Value | Identifier | RX | TX | Notes |
42+
| ----- | ------------ | ---------- | ------------------ | ------------------------------------------------------------------------------------------- |
43+
| 1 | USART1 | RX / PA10 | TX / PA9 / TELEM | TELEM output is always inverted (for FrSky). Internally connected to USB port via CP2102 IC |
44+
| 2 | USART2 | RC4 / PA3 | RC3 / PA2 | |
45+
| 3 | USART3 | F3 / PB11 | F2 / PB10 | Flex port is configured as UART3 when port is configured |
46+

0 commit comments

Comments
 (0)