mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
updating readme and some "name" files
This commit is contained in:
parent
e3ca33fafb
commit
c77804a4fd
3 changed files with 37 additions and 3 deletions
31
README.md
31
README.md
|
@ -0,0 +1,31 @@
|
|||
baseflight / multiwii configurator
|
||||
==================================
|
||||
This project was designed to work primarily with baseflight (but should work just fine with anything using the standard MSP)
|
||||
|
||||
Configurator is based on chrome.serial API (currently found only in google chrome and chromium web browsers)
|
||||
|
||||
I am using Flotr2 as a plotting library (with a few UI tweaks).
|
||||
|
||||
Using "webkit" as application wrapper assures full compatibility across operating systems (Windows / Linux/ Mac OS).
|
||||
|
||||
Installation
|
||||
------------
|
||||
1. - Clone the repo to any local directory or download it as zip
|
||||
2. - Start chromium or google chrome and go to tools -> extension
|
||||
3. - Check the "Developer mode" checkbox
|
||||
4. - Click on load unpacked extension and point it to the baseflight configurator directory (for example D:/baseflight-configurator)
|
||||
5. - Note: Don't go "inside" configurators directory (just point to the folder)
|
||||
6. - You are done
|
||||
|
||||
Hows to use
|
||||
-----------
|
||||
You can find the baseflight configurator icon in your application tab "Apps"
|
||||
|
||||
Application should work "out of the box" on both Windows and Mac OSX
|
||||
|
||||
On Linux the situation is a little tricky.
|
||||
There is an outstanding bug in chromium/google chrome which is preventing setting the correct baud rate via the UI
|
||||
this bug will be fixed in version 27, but till then you might need to use an 3rd party utility like stty
|
||||
|
||||
example command to change the baud rate via stty
|
||||
stty -F /dev/ttyUSB0 115200
|
|
@ -1,10 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>baseflight configurator</title>
|
||||
<title>baseflight / multiwii configurator</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="author" content="cTn" />
|
||||
|
||||
<link type="text/css" rel="stylesheet" href="./css/style.css" media="all" />
|
||||
|
||||
<script type="text/javascript" src="./js/flotr2.min.js"></script>
|
||||
<script type="text/javascript" src="./js/jquery-1.9.1.min.js"></script>
|
||||
<script type="text/javascript" src="./js/serial_backend.js"></script>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "baseflight configurator",
|
||||
"description": "Cool crossplatform baseflight configurator",
|
||||
"name": "baseflight / multiwii configurator",
|
||||
"description": "Cool crossplatform configurator",
|
||||
"version": "0.1",
|
||||
"manifest_version": 2,
|
||||
"minimum_chrome_version": "23",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue