-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from am32-firmware/Kiss_Ardupilot_DshotBranch
Kiss ardupilot dshot branch
- Loading branch information
Showing
2,142 changed files
with
552,446 additions
and
746,712 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: CI Build Linux | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: 'ubuntu-latest' | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Build CI | ||
run: | | ||
make arm_sdk_install | ||
make -j8 | ||
- name: Archive build | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: AM32-binaries | ||
path: | | ||
obj/*.hex | ||
retention-days: 7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: CI Build Windows | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: 'windows-latest' | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Build CI | ||
run: | | ||
make arm_sdk_install | ||
tools/windows/make/bin/make | ||
- name: Archive build | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: AM32-binaries | ||
path: | | ||
obj/*.hex | ||
retention-days: 7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
// STLink configuration | ||
{ | ||
"name": "AM32 STLink", | ||
"cwd": "${workspaceFolder}", | ||
"executable": "${workspaceFolder}/obj/debug.elf", | ||
"liveWatch": { | ||
"enabled": true, | ||
"samplesPerSecond": 4, | ||
}, | ||
"request": "launch", | ||
"type": "cortex-debug", | ||
"servertype": "openocd", | ||
"configFiles": [ | ||
"${workspaceFolder}/obj/openocd.cfg", | ||
], | ||
"showDevDebugOutput": "none", | ||
|
||
"serverpath": "${workspaceFolder}${/}tools${/}${config:OS}${/}openocd${/}bin${/}openocd", | ||
"armToolchainPath": "${workspaceRoot}/tools/${config:OS}/xpack-arm-none-eabi-gcc-10.3.1-2.3/bin", | ||
}, | ||
|
||
// JLink configuration | ||
{ | ||
"type": "cortex-debug", | ||
"request": "launch", | ||
"name": "AM32 JLink", | ||
"cwd": "${workspaceRoot}", | ||
"device" : "-AT32F421K8U7", | ||
"gdbPath": "${workspaceRoot}/tools/${config:OS}/xpack-arm-none-eabi-gcc-10.3.1-2.3/bin/arm-none-eabi-gdb", | ||
"executable": "${workspaceRoot}/obj/debug.elf", | ||
"showDevDebugOutput": "raw", | ||
"servertype" : "jlink", | ||
"swoConfig": { | ||
"enabled": false, | ||
}, | ||
"serialNumber": "", | ||
"liveWatch": { | ||
"enabled": true, | ||
"samplesPerSecond": 4 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"OS": "windows", | ||
"makefile.makePath": "tools/windows/make/bin/make.exe", | ||
|
||
//"OS": "linux", | ||
//"makefile.makePath": "/usr/bin/make", | ||
|
||
"makefile.configurations": [ | ||
{ | ||
"name": "MakeSingle", | ||
"makeArgs": [ | ||
"-j1" | ||
] | ||
}, | ||
{ | ||
"name": "MakeParallel-8", | ||
"makeArgs": [ | ||
"-j8" | ||
] | ||
}, | ||
{ | ||
"name": "MakeParallel-MAX", | ||
"makeArgs": [ | ||
"-j" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.