Commit Graph

712 Commits

Author SHA1 Message Date
Michael Keller 8f1df0635f
Merge pull request #5950 from nyway/master
Add new target FOXEERF405
2018-05-23 23:47:57 +12:00
ZhengNingwei 09ed26f2ff Add new target FOXEERF405
Board - FOXEERF405

This board use the STM32F405RGT6 microcontroller and have the following features:
* 1024K bytes of flash memory,192K bytes RAM,168 MHz CPU/210 DMIPS
* The 16M byte SPI flash for data logging
* USB VCP and boot select button on board(for DFU)
* Stable voltage regulation,9V/2A DCDC BEC for VTX/camera etc.And could select 5v/9v with pad
* Serial LED interface(LED_STRIP)
* VBAT/CURR/RSSI sensors input
* Suppose IRC Tramp/smart audio/FPV Camera Control/FPORT/telemetry
* Supports SBus, Spektrum1024/2048, PPM. No external inverters required (built-in).
* Supports I2C device extend(baro/compass/OLED etc)
* Supports GPS
* Supports MPU6000 or ICM20689
2018-05-23 15:31:39 +08:00
Neil Balch 878418a19c Updated MATEK F405-CTR Docs
Improved formatting and added info on status indicator patterns
2018-05-21 17:17:30 -07:00
Steve Evans c05d9ef935 Fix doc typos 2018-05-16 22:13:51 +01:00
allenfor2017 b337cfb941 update target SPEEDYBEE F4 2018-05-11 11:44:33 +08:00
Neil B 97b787fb72 Cleaned up markdown
Added markdown code bash tags and removed whitespace
2018-05-03 20:27:11 -07:00
Neil B 9e6752198c Make F405-CTR docs more readable 2018-05-03 18:03:10 -07:00
Neil 1fd1bdbb3f
Add softserial info and status LEDs 2018-05-03 14:53:18 -07:00
Neil 86c54ff3ae
Clarify resource command in F405-CTR docs 2018-05-03 14:27:32 -07:00
Neil b8a9beb732
Add UART list for F405-CTR and update pinout 2018-05-03 12:20:59 -07:00
Neil b95089da5d
Add note on possible pad conflict
And fix terminology for RX5 pad description.
2018-05-03 08:10:37 -07:00
Michael Keller 40e8f77fed
Merge pull request #5802 from neilbalch/patch-1
Add Board documentation for Matek F405-CTR
2018-05-04 00:07:31 +12:00
Neil f679215d03
Fix file extension (oops!) 2018-05-02 22:12:23 -07:00
Neil 4d95369b1f
Add Board documentation for Matek F405-CTR 2018-05-02 22:09:04 -07:00
Andrey Mironov c281e87e9e
Update Board - AikonF4.md 2018-04-23 10:59:35 +03:00
Dimand 49139f2d6d New details for calibrating current sensors (#5658) 2018-04-18 01:22:24 +12:00
SteveCEvans 6f088d0fd2 Add PID adjustment from AUX transmitter channel (#5584)
* Scale PIDs using aux channels

* Add control via variables and documentation

* Use USE_TXPID

* Removed OWNER_TXPID

* Use PWM_RANGE_MIDDLE

* Fix typos

* Move Tx PID arrays into pidProfile_t

* Move macro to pidUpdateRate function

* Enable TXPID on REVONANO

* Add support for direct setting of adjustments from aux channel

* Change variable name from adjustmentScale to adjustmentScale to avoid confusion

* Update documentation

* Change variable name from adjustmentScale to adjustmentScale to avoid confusion

* Only adjust settings if adjustment channel has changed value

* Fix formatting

* Use pidAudioModes_e type in ADJUSTMENT_PID_AUDIO setting. Only allow absolute override of settings of ADJUSTMENT_MODE_STEP.

* Add example 6

* Fix checking of adjustment mode

* Fix USE_PID_AUDIO code. Broke SPRACINGF7DUAL.
2018-04-18 00:23:44 +12:00
Andrey Mironov b8aa6ac915 Added AIKONF4 (#5355)
* Added AIKONF4

* Replaced binary literals with explicit bit macros

* Removed invalid backdoor timers

* Added board description to docs folder
2018-04-01 11:10:39 +12:00
Michael Keller b55ff3fefc
Added documentation for the FrSky SPI RX. (#5545) 2018-03-30 18:01:12 +13:00
allenfor2017 a02c404157 add new target SpeedyBee F4 (#5552)
* add new target speedybee f4

* modify BEEPER define
2018-03-30 17:54:25 +13:00
githubDLG cd72348dd3 add new target CrazyBee F3 FS (#5495)
* add new target CrazyBee F3 FS

add new target CrazyBee F3 FS

* merge crazybeef3fs to crazybeef3fr
2018-03-23 20:11:59 +13:00
SteveCEvans 5558174d33 Support programming of Arduino devices in serial passthrough mode (#5129)
* Support DTR in serial passthrough mode to enable programming of Arduino
based devices such as MinimOSD.

Use 'serialpassthrough 5 57600 rxtx 56' and then use Ardino to program MinimOSD
Use 'serialpassthrough 5 115200' and then use MWOSD configurator to setup

* Fix comment for CDC_SetCtrlLineStateCb routine

* Handle F7 CDC interface

* Use strToPin() to allow easy port/pin specification

* Fix use of CDC_SetCtrlLineStateCb for all processor types

* Only set baud when specified

* Fix unit tests for cli

* Only register callback if needed

* Fix white space

* Provide implementation of IOConfigGPIO in SITL

* Update serialpassthrough help text

* DTR handling through serial drivers

* Fix F3, F7 and SITL builds

* If serialpassthrough command specifies baud rate of 0, set baud rate over USB. MWOSD configurator can now access config and reflash MinimOSD without rebooting and changing baud rate.

* Fix F3 build

* Fix failing unit tests

* Use resources to declare DTR pin assignment

* Don't assert DTR during normal operation as MW_OSD doesn't like it

* MW_OSD must be built with MAX_SOFTRESET defined in order to support DTR resets

* Minimise changes after dropping DTR pin param from serialpassthrough cmd

* Remove DTR pin param from serialpassthrough cmd

* Treat ioDtrTag as boolean in conditional statements

* Tidy buffer check

* Check buffer size in CDC_Itf_Control

* Fix unit test

* Add documentation for DTR

* Add note on MAX_SOFTRESET to documentation

* Remove superfluous function definitions

* Fix tabs

* Fix tabs

* Removed superfluous entried from vtable

* Backout whitespace changes unrelated to this PR

* Pass true/false to IOWrite()

* Fix line coding packing

* Add LINE_CODING structure defintion

* Revise serial documentation

* Prevent tx buffer overflow in serialPassthrough()

* Revert change unrelated to PR

* Review feedback from ledvinap

* Fix unit test

* Use PINIO to drive DTR

* Fix unit test

* Remove change unrelated to PR

* Fix SITL build

* Use shifted bits for mask definition

* Fix serialpassthrough documentation

* Only compile PINIO functionality if USE_PINIO defined

* IOConfigGPIO not needed

* Move cbCtrlLine callback to cli.c

* serialPassthrough params changed

* Check packed structure size

* Fix unit test

* Tidy up baud rate handling
2018-03-21 23:17:31 +13:00
SteveCEvans 11fb4cb091 If RSSI Channel is set to Disabled when using S.Bus then generate RSS… (#5090)
* If RSSI Channel is set to Disabled when using S.Bus then generate RSSI signal using frame drop flags from the rx

* Set RSSI max level for S.Bus to 1024 so OSD defaults can be used

* Failsfafe must be detected rather than just reporting dropped frames

* Failsafe implies dropped frames

* Remove failsafe debug

* Use RSSI_SOURCE_RX_PROTOCOL

* Add rssi_from_rx_protocol to enable siqnal quality from rx to be processed as RSSI

* Use RSSI_MAX_VALUE definition

* Use rssi_from_rx_protocol flag for fport rx

* Update serialpassthrough help text

* Revert erroneous commit

* Use rssi_src_frame_errors boolean

* rssi_src_frame_errors = ON | OFF

* Moved rssi_src_frame_errors to end of rxConfig_t struct

* Add documentation of rssi_src_frame_errors

* Synthesise RX_FRAME_FAILSAFE flag to protect from bad implementation in receivers

* Match rx failsafe behaviour exactly

* Only set RX_FRAME_COMPLETE if valid frame is received

* RSSI_SOURCE_FRAME_ERRORS moved to end of rssiSource_e enum

* Removed superfluous else if clause

* Restore debug code

* Restore stateFlags

* Set RX_FRAME_DROPPED flag when failsafe is triggered
2018-03-21 13:36:23 +13:00
Michael Keller 2ba0f74f5f
Fixed puntuation in documentation. Also, testing [ci skip] (#5474) 2018-03-20 13:17:15 +13:00
Michael Keller 499d619e27
Updated release notes to include information about the AKK / RDQ VTX fix branch. [ci skip] (#5472) 2018-03-20 12:43:57 +13:00
githubDLG b286c061e6 New target CrazyBeeF3FR (#5420)
* Create target.c

* Add files via upload

* add new target

add new target, CrazyBeeF3FR

* Update target.h

* Update target.h

* Update target.c

* Update target.h

* Update target.c

* Update target.h

* move the 2 jpg to the docs/boards

* add jpg file to docs/boards/

* update picture links of .md file

* try relative reference the pic

* upadte defines form

-#define BEEPER                  PC15
+#define USE_BEEPER
+#define BEEPER_PIN              PC15

#define GYRO
#define USE_GYRO

#define ACC
#define USE_ACC
2018-03-15 02:32:14 +13:00
ileou 31b3959221 Update Building in Ubuntu.md (#5408)
Adjust the ARM_SDK_DIR variable in TOOLS.MK file with the "gcc-arm-none-eabi-xxx" version.
2018-03-15 02:14:33 +13:00
azolyoung 0d3ca7fa6d add a wiki link in the release notes for the update of runcam in BF3.3 (#5403) 2018-03-15 02:08:09 +13:00
SteveCEvans 0430fcb67d Add ledstrip_grb_rgb setting (GRB or RGB) to handle WS2811 or WS2812 … (#5255)
* Add ledstrip_grb_rgb setting (GRB or RGB) to handle WS2811 or WS2812 LED drivers

* Rename setting lookup table to lookupLedStripPackingOrder

* Fix call to ws2811UpdateStrip

* Fix unit test

* Use ledStripFormatRGB_e enumeration for RGB packing format

* Fix unit test

* Whoops. Make ledStripFormatRGB_e match lookupLedStripFormatRGB

* Applied review feedback

* Add documentation of ledstrip_grb_rgb
2018-03-06 09:39:14 +13:00
Michael Keller 51f5c15e18
Added abridged release notes for 3.3 to docs. (#5363) 2018-03-04 11:32:11 +13:00
ZhengNingwei adbe9f29ab New Target
Add new target DALRCF405

Update target.h

add Board - DALRCF405.md

add Board - DALRCF405.md

Update Board - DALRCF405.md

add designers

Update target.h

deleate some default parameters
2018-02-09 14:06:29 +08:00
Adrian Miriuta 4eb1ff4c1c corrected .md syntax Documentation for <gyro_offset_yaw> 2018-01-26 10:05:38 +01:00
Adrian Miriuta e26518cc4f Documentation for <gyro_offset_yaw> 2018-01-26 06:46:53 +01:00
Cheng Lin 6f6f4fef4f Add PYRODRONEF4 target
Signed-off-by: Cheng Lin <bnn1044@gmail.com>

Add PYRODRONEF4 with Board definition

Signed-off-by: Cheng Lin <bnn1044@gmail.com>

Add PYRODRONEF4 target

Signed-off-by: Cheng Lin <bnn1044@gmail.com>

Add PYRODRONEF4 with Board definition

Signed-off-by: Cheng Lin <bnn1044@gmail.com>

Add PYRODRONEF4 target

Signed-off-by: Cheng Lin <bnn1044@gmail.com>

Add PYRODRONEF4 with Board definition

Signed-off-by: Cheng Lin <bnn1044@gmail.com>

move Target definition to Docs/Board
2018-01-19 23:36:22 -05:00
mikeller 6de40c49fc Moved board docs into their own folder. Also fixed file permissions. 2018-01-18 17:55:38 +13:00
Dave Johnson 8d21096f7f Correct improper article usage 2018-01-08 12:20:24 +13:00
Dave Johnson 445b77a702 Fix and clarify Virtual Current Sensor docs
-Fix incorrect formula in example section of charger method calibration
-Fix incorrect verb tense from "mAh draw" to "mAh drawn"
-Simplify instruction steps to be more direct
-Replace abstract example calculation values with rounded numbers to make formula more obvious for humans
-Make formula placeholder names to match those used in Configurator
-Cross fingers that is it so clear now that not even a grandmother would try to change it again ;)
2018-01-08 12:20:24 +13:00
grizewald 9e39732b43 Update example as well. 2018-01-08 12:20:24 +13:00
grizewald b41f62cd45 Correct scale adjustment calculation for charger data. 2018-01-08 12:20:24 +13:00
Jacob Walser 6b6de6c925 Formatting 2018-01-08 12:20:23 +13:00
Dominic Clifton 045a3bd16c CF/BF - Port VTX button from CF v1.x.
Features:
* Channel Cycle
* Band Cycle
* Power Cycle
* Save Settings
* Works with any VTX using VTX API.
2018-01-08 12:19:35 +13:00
Miguel Angel Mulero Martinez 888984f573 Documentation for combine ibus serial rx and telemetry on same UART 2018-01-08 12:19:35 +13:00
Rogier van den Berg 75ed2cc14b CHG PID tuning Angle/Horizon GUI text labels
The description was not accurate (anymore) to Cleanflight 2. I changed the text accordingly.
2018-01-08 12:19:35 +13:00
Miguel Angel Mulero Martinez 233b818397 Update doc: common.h file is now common_fc_pre.h 2018-01-08 12:19:35 +13:00
Dingo420 1d07cc8e0f Create Board - Naze32.md
Update note about GPS is not supported
2018-01-08 12:19:35 +13:00
Bastian Schroll adf0488d8d Update Battery.md
False formula for the virtual current sensor
2018-01-08 12:19:35 +13:00
Phil Hord 579f6e1de8 Fix markdown links to filenames with spaces
Markdown links cannot have actual spaces in the filename.  Use URL-encoded
spaces (%20) instead.

robo-fixed using:
   sed -i -e 's/\(]([^ )]*\) \([^"]\)/\1%20\2/g' **/*.md

If you don't use zhell, you may need to customize the ** part of that command.
2018-01-08 12:19:35 +13:00
sspw 1988097a98 CF/BF - Add EasyRaceLapTimer transponder provider 2018-01-08 12:19:35 +13:00
Hydra eb800966d9 CF - restore docs folder from master_v1.x 2018-01-08 12:19:35 +13:00
borisbstyle c8e7850c3d Betaflight Cleanup targets / docs 2016-02-10 23:09:22 +01:00