mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-14 03:49:58 +03:00
Merge branch 'iNavFlight:master' into add-azimuth-to-S.Port/F.Port-telemetry
This commit is contained in:
commit
6ddfdcf7c8
110 changed files with 2255 additions and 1129 deletions
|
@ -23,12 +23,14 @@ Where `<TARGET>` must be replaced with the name of the target that you want to b
|
|||
## Windows 10
|
||||
|
||||
Docker on Windows requires full paths for mounting volumes in `docker run` commands. For example: `c:\Users\pspyc\Documents\Projects\inav` becomes `//c/Users/pspyc/Documents/Projects/inav` .
|
||||
If you are getting error "standard_init_linux.go:219: exec user process caused: no such file or directory", make sure `\cmake\docker.sh` has lf (not crlf) line endings.
|
||||
|
||||
You'll have to manually execute the same steps that the build script does:
|
||||
|
||||
1. `docker build -t inav-build .`
|
||||
+ This step is only needed the first time.
|
||||
2. `docker run --rm -it -v <PATH_TO_REPO>:/src inav-build <TARGET>`
|
||||
2. `docker run --rm -it -u root -v <PATH_TO_REPO>:/src inav-build <TARGET>`
|
||||
+ Where `<PATH_TO_REPO>` must be replaced with the absolute path of where you cloned this repo (see above), and `<TARGET>` with the name of the target that you want to build.
|
||||
+ Note that on Windows/WSL 2 mounted /src folder is writeable for root user only. You have to run build under root user. You can achieve this by using `-u root` option in the command line above, or by removing "USER inav" line from the .\DockerFile before building image.
|
||||
|
||||
Refer to the [Linux](#Linux) instructions or the [build script](/build.sh) for more details.
|
|
@ -65,7 +65,7 @@ The `git clone` creates an `inav` directory; we can enter this directory, config
|
|||
|
||||
## Build tooling
|
||||
|
||||
For 2.6 and later, inav uses `cmake` as its primary build tool. `cmake` simplies various platform and hardware dependencies required to cross compile multiple targets. `cmake` still uses GNU `make` to invoke the actual compiler. It is necessary to configure the build enviroment with `cmake` before we can build any firmware.
|
||||
For 2.6 and later, inav uses `cmake` as its primary build tool. `cmake` simplifies various platform and hardware dependencies required to cross compile multiple targets. `cmake` still uses GNU `make` to invoke the actual compiler. It is necessary to configure the build environment with `cmake` before we can build any firmware.
|
||||
|
||||
## Using `cmake`
|
||||
|
||||
|
@ -96,14 +96,14 @@ Once `cmake` has generated the `build/Makefile`, this `Makfile` (with `make`) is
|
|||
|
||||
The generated `Makefile` uses different a target selection mechanism from the older (pre 2.6) top level `Makefile`; you can generate a list of targets with `make help` (or, as the list is extremely long), pipe this into a pager, e.g. `make help | less`.
|
||||
|
||||
Typically, to build a single target, just pass the target name to `make`; note that unlike eariler releases, `make` without a target specified will build **all** targets.
|
||||
Typically, to build a single target, just pass the target name to `make`; note that unlike earlier releases, `make` without a target specified will build **all** targets.
|
||||
|
||||
```
|
||||
# Build the MATEKF405 firmware
|
||||
make MATEKF405
|
||||
```
|
||||
|
||||
One can also build multiple targets from a sinlge `make` command:
|
||||
One can also build multiple targets from a single `make` command:
|
||||
|
||||
```
|
||||
make MATEKF405 MATEKF722
|
||||
|
@ -128,7 +128,7 @@ make clean_MATEKF405
|
|||
make clean_MATEKF405 clean_MATEKF722
|
||||
```
|
||||
|
||||
### `cmake` cache maintainance
|
||||
### `cmake` cache maintenance
|
||||
|
||||
`cmake` caches the build environment, so you don't need to rerun `cmake` each time you build a target. Two `make` options are provided to maintain the `cmake` cache.
|
||||
|
||||
|
@ -141,7 +141,7 @@ It is unlikely that the typical user will need to employ these options, other th
|
|||
|
||||
In order to update your local firmware build:
|
||||
|
||||
* Navigate to the local iNav repository
|
||||
* Navigate to the local inav repository
|
||||
* Use the following steps to pull the latest changes and rebuild your local version of inav firmware from the `build` directory:
|
||||
|
||||
```
|
||||
|
@ -154,3 +154,9 @@ $ make <TARGET>
|
|||
## Advanced Usage
|
||||
|
||||
For more advanced development information and `git` usage, please refer to the [development guide](https://github.com/iNavFlight/inav/blob/master/docs/development/Development.md).
|
||||
|
||||
## Unsupported platforms
|
||||
|
||||
If you're using a host platform for which Arm does not supply a cross-compiler (Arm32, IA32), and the distro either does not package a suitable compiler or it's too old, then you can usually find a suitable compiler in the [xpack devtools collection](https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack).
|
||||
|
||||
You will need to configure `cmake` to use the external compiler.
|
||||
|
|
|
@ -20,13 +20,13 @@ Install Ubuntu:
|
|||
NOTE: from this point all commands are entered into the Ubunto shell command window
|
||||
|
||||
Update the repo packages:
|
||||
1. `sudo apt update`
|
||||
- `sudo apt update`
|
||||
|
||||
Install Git, Make, gcc and Ruby
|
||||
1. `sudo apt-get install git`
|
||||
1. `sudo apt-get install make`
|
||||
1. `sudo apt-get install cmake`
|
||||
1. `sudo apt-get install ruby`
|
||||
- `sudo apt-get install git make cmake ruby`
|
||||
|
||||
Install python and python-yaml to allow updates to settings.md
|
||||
- `sudo apt-get install python3 python-yaml`
|
||||
|
||||
### CMAKE and Ubuntu 18_04
|
||||
|
||||
|
@ -78,6 +78,12 @@ cd build
|
|||
make MATEKF722
|
||||
```
|
||||
|
||||
## Updating the documents
|
||||
```
|
||||
cd /mnt/c/inav
|
||||
python3 src/utils/update_cli_docs.py
|
||||
```
|
||||
|
||||
## Flashing:
|
||||
Launch windows configurator GUI and from within the firmware flasher select `Load firmware[Local]`
|
||||
Hex files can be found in the folder `c:\inav\build`
|
80
docs/development/Building in Windows 10 or 11 with MSYS2.md
Normal file
80
docs/development/Building in Windows 10 or 11 with MSYS2.md
Normal file
|
@ -0,0 +1,80 @@
|
|||
# General Info
|
||||
|
||||
This is a guide on how to use Windows MSYS2 distribution and building platform to build iNav firmware. This environment is very simple to manage and does not require installing docker for Windows which may get in the way of VMWare or any other virtualization software you already have running for other reasons. Another benefit of this approach is that the compiler runs natively on Windows, so performance is much better than compiling in a virtual environment or a container. You can also integrate with whatever IDE you are using to make code edits and work with github, which makes the entire development and testing workflow a lot more efficient. In addition to MSYS2, this build environment also uses Arm Embedded GCC tolkit from The xPack Project, which provides many benefits over the toolkits maintained by arm.com
|
||||
|
||||
Some of those benefits are described here:
|
||||
|
||||
https://xpack.github.io/arm-none-eabi-gcc/
|
||||
|
||||
## Setting up build environment
|
||||
|
||||
Download MSYS2 for your architecture (most likely 64-bit)
|
||||
|
||||
https://www.msys2.org/wiki/MSYS2-installation/
|
||||
|
||||
Click on 64-bit, scroll all the way down for the latest release
|
||||
|
||||
pacman is the package manager which makes it a lot easier to install and maintain all the dependencies
|
||||
|
||||
## Installing dependencies
|
||||
|
||||
Once MSYS2 is installed, you can open up a new terminal window by running:
|
||||
|
||||
"C:\msys64\mingw64.exe"
|
||||
|
||||
You can also make a shortcut of this somewhere on your taskbar, desktop, etc, or even setup a shortcut key to open it up every time you need to get a terminal window. If you right click on the window you can customize the font and layout to make it more comfortable to work with. This is very similar to cygwin or any other terminal program you might have used before
|
||||
|
||||
This is the best part:
|
||||
```
|
||||
pacman -S git ruby make cmake gcc mingw-w64-x86_64-libwinpthread-git unzip wget
|
||||
```
|
||||
|
||||
Now, each release needs a different version of arm toolchain. To setup the xPack ARM toolchain, use the following process:
|
||||
|
||||
First, setup your work path, get the release you want to build or master if you want the latest/greatest
|
||||
```
|
||||
mkdir /c/Workspace
|
||||
cd /c/Workspace
|
||||
# you can also check out your own fork here which makes contributing easier
|
||||
git clone https://github.com/iNavFlight/inav
|
||||
cd inav
|
||||
# switch to release you want or skip next 2 lines if you want latest
|
||||
git fetch origin
|
||||
git checkout -b release_2.6.1 origin/release_2.6.1
|
||||
```
|
||||
Now create the build and xpack directories and get the toolkit version you need for your inav version
|
||||
```
|
||||
mkdir build
|
||||
cd build
|
||||
mkdir /c/Workspace/xpack
|
||||
cd /c/Workspace/xpack
|
||||
cat /c/Workspace/inav/cmake/arm-none-eabi-checks.cmake | grep "set(arm_none_eabi_gcc_version" | cut -d\" -f2
|
||||
```
|
||||
This will give you the version you need for any given release or master branch. You can get to all the releases here and find the version you need
|
||||
|
||||
https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/
|
||||
```
|
||||
# for version 2.6.1, version needed is 9.2.1
|
||||
wget https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v9.2.1-1.1/xpack-arm-none-eabi-gcc-9.2.1-1.1-win32-x64.zip
|
||||
unzip xpack-arm-none-eabi-gcc-9.2.1-1.1-win32-x64.zip
|
||||
```
|
||||
This is important, put the toolkit first before your path so that it is picked up ahead of any other versions that may be present on your system
|
||||
```
|
||||
export PATH=/c/Workspace/xpack/xpack-arm-none-eabi-gcc-9.2.1-1.1/bin:$PATH
|
||||
cd /c/Workspace/inav/build
|
||||
```
|
||||
You may need to run rm -rf * in build directory if you had any failed previous runs now run cmake
|
||||
```
|
||||
# while inside the build directory
|
||||
cmake ..
|
||||
```
|
||||
Once that's done you can compile the firmware for your controller
|
||||
```
|
||||
make DALRCF405
|
||||
```
|
||||
To get a list of available targets in iNav, see the target src folder
|
||||
https://github.com/tednv/inav/tree/master/src/main/target
|
||||
|
||||
The generated hex file will be in /c/Workspace/inav/build folder
|
||||
|
||||
At the time of writting this document, I believe this is the fastest, easiest, and most efficient Windows build environment that is available. I have used this approach several years ago and was very happy with it building iNav 2.1 and 2.2, and now I'm getting back into it so figured I would share my method
|
|
@ -79,30 +79,6 @@ Edit `./.vscode/tasks.json` to enable Building with `Ctrl + Shift + B` keyboard
|
|||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build Matek F722-SE",
|
||||
"type": "shell",
|
||||
"command": "make MATEKF722SE",
|
||||
"group": "build",
|
||||
"problemMatcher": [],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/build"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Build Matek F722",
|
||||
"type": "shell",
|
||||
"command": "make MATEKF722",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": [],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/build"
|
||||
}
|
||||
}
|
||||
,
|
||||
{
|
||||
"label": "Install/Update CMAKE",
|
||||
"type": "shell",
|
||||
|
@ -112,6 +88,37 @@ Edit `./.vscode/tasks.json` to enable Building with `Ctrl + Shift + B` keyboard
|
|||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Compile autogenerated docs",
|
||||
"type": "shell",
|
||||
"command": "python3 src/utils/update_cli_docs.py",
|
||||
"problemMatcher": [],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
},
|
||||
// Example of building a single target
|
||||
{
|
||||
"label": "Build Matek F722-WPX",
|
||||
"type": "shell",
|
||||
"command": "make MATEKF722WPX",
|
||||
"group": "build",
|
||||
"problemMatcher": [],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/build"
|
||||
}
|
||||
},
|
||||
// Example of building multiple targets
|
||||
{
|
||||
"label": "Build Matek F405-STD & WING",
|
||||
"type": "shell",
|
||||
"command": "make MATEKF405 MATEKF405SE",
|
||||
"group": "build",
|
||||
"problemMatcher": [],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/build"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue