-
-
Notifications
You must be signed in to change notification settings - Fork 597
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 #2261 from portapack-mayhem/next
v2.0.2
- Loading branch information
Showing
386 changed files
with
11,576 additions
and
3,289 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
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
44 changes: 0 additions & 44 deletions
44
.github/ISSUE_TEMPLATE/03_problem-upgrading-the-firmware.md
This file was deleted.
Oops, something went wrong.
45 changes: 45 additions & 0 deletions
45
.github/ISSUE_TEMPLATE/03_problem-upgrading-the-firmware.yml
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,45 @@ | ||
name: Firmware/boot issue | ||
description: If you are having firmware upgrade or booting problems. | ||
labels: | ||
- firmware | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: >2- | ||
Thank you for taking the time to fill out an issue, this template is meant for any issues related to the Mayhem firmware. | ||
Before creating this issue, **do the following**: | ||
* Read the Wiki on booting: | ||
https://github.com/portapack-mayhem/mayhem-firmware/wiki/Won't-boot | ||
* Read: | ||
https://github.com/portapack-mayhem/mayhem-firmware/wiki/Update-firmware | ||
* Watch carefully: https://www.youtube.com/watch?v=_zx4ZvurgOs | ||
* (if you are not in Windows) also check: | ||
https://www.youtube.com/watch?v=kjFB58Y1TAo | ||
* Check hardware versions: | ||
https://github.com/portapack-mayhem/mayhem-firmware/wiki/PortaPack-Versions | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: What happened? | ||
description: If after following the above troubleshooting the problem still remains | ||
placeholder: Describe what was is the problem | ||
- type: input | ||
id: hardware | ||
attributes: | ||
label: Your hardware | ||
description: Check the link with the versions above | ||
placeholder: Which device you have? | ||
- type: checkboxes | ||
id: firmware_update_before | ||
attributes: | ||
label: Tests | ||
description: >- | ||
Things might be confusing the first time, please check the documentation | ||
above | ||
options: | ||
- label: I managed to update/boot previously | ||
required: false |
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
v2.0.0 | ||
v2.0.1 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
v2.0.1 | ||
v2.0.2 |
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 |
---|---|---|
|
@@ -51,6 +51,7 @@ | |
.dep/ | ||
/build* | ||
CMakeFiles/ | ||
cmake-build-debug/ | ||
|
||
# Debugging | ||
.gdbinit* | ||
|
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,148 @@ | ||
{ | ||
// 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": [ | ||
{ | ||
"name": "(gdb) JTAG probe", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"miDebuggerPath": "arm-none-eabi-gdb", | ||
"targetArchitecture": "arm", | ||
"program": "${workspaceRoot}/build/firmware/baseband/baseband_adsbrx.elf", | ||
"cwd": "${workspaceRoot}", | ||
"setupCommands": [ | ||
// use logging for troubleshooting | ||
//{"text": "set logging file ${workspaceRoot}/build/arm-none-eabi-gdb.log"}, | ||
//{"text": "set logging on"}, | ||
{ | ||
"text": "file '${workspaceRoot}/build/firmware/baseband/baseband_adsbrx.elf'" | ||
}, | ||
{ | ||
"text": "target extended-remote /dev/ttyACM0" | ||
}, | ||
{ | ||
"text": "monitor swdp_scan" | ||
}, | ||
{ | ||
"text": "attach 1" | ||
}, | ||
], | ||
"launchCompleteCommand": "None", | ||
"externalConsole": false, | ||
}, | ||
{ | ||
"name": "(gdb) OpenOCD m4 baseband", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/build/firmware/baseband/baseband_sd_over_usb.elf", | ||
"args": [], | ||
"cwd": "${workspaceRoot}", | ||
// "environment": [ | ||
// { | ||
// "name": "PATH", | ||
// "value": "${env:PATH}" | ||
// } | ||
// ], | ||
"externalConsole": false, | ||
"MIMode": "gdb", | ||
"miDebuggerPath": "arm-none-eabi-gdb", | ||
"targetArchitecture": "arm", | ||
"debugServerPath": "openocd", | ||
"debugServerArgs": "-f interface/ftdi/um232h.cfg -f target/lpc4350.cfg -c \"gdb_breakpoint_override hard\"", | ||
"serverStarted": "Listening on port [0-9]+ for gdb connections", | ||
"filterStderr": true, | ||
"filterStdout": false, | ||
"launchCompleteCommand": "None", | ||
"postRemoteConnectCommands": [ | ||
{ | ||
"description": "Target Remote Device on Port 3333", | ||
"text": "target extended-remote :3333", | ||
"ignoreFailures": false | ||
}, | ||
{ | ||
"description": "Respect Hardware Limitations", | ||
"text": "set remote hardware-watchpoint-limit 2", | ||
"ignoreFailures": false | ||
}, | ||
{ | ||
"description": "Respect Hardware Limitations", | ||
"text": "set remote hardware-breakpoint-limit 4", | ||
"ignoreFailures": false | ||
}, | ||
{ | ||
"description": "Shutdown GDB Server on GDB Detach", | ||
"text": "monitor [target current] configure -event gdb-detach { shutdown }", | ||
"ignoreFailures": false | ||
}, | ||
], | ||
"stopAtConnect": false, | ||
"logging": { | ||
"exceptions": true, | ||
"engineLogging": false, | ||
"moduleLoad": true, | ||
"programOutput": true, | ||
"trace": false, | ||
"traceResponse": false | ||
}, | ||
"useExtendedRemote": true | ||
}, | ||
{ | ||
"name": "(gdb) OpenOCD m0 application", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/build/firmware/application/application.elf", | ||
"args": [], | ||
"cwd": "${workspaceRoot}", | ||
// "environment": [ | ||
// { | ||
// "name": "PATH", | ||
// "value": "${env:PATH}" | ||
// } | ||
// ], | ||
"externalConsole": false, | ||
"MIMode": "gdb", | ||
"miDebuggerPath": "arm-none-eabi-gdb", | ||
"targetArchitecture": "arm", | ||
"debugServerPath": "openocd", | ||
"debugServerArgs": "-f interface/ftdi/um232h.cfg -f target/lpc4350.cfg -c \"gdb_breakpoint_override hard\"", | ||
"serverStarted": "Listening on port [0-9]+ for gdb connections", | ||
"filterStderr": true, | ||
"filterStdout": false, | ||
"launchCompleteCommand": "None", | ||
"postRemoteConnectCommands": [ | ||
{ | ||
"description": "Target Remote Device on Port 3334", | ||
"text": "target extended-remote :3334", | ||
"ignoreFailures": false | ||
}, | ||
{ | ||
"description": "Respect Hardware Limitations", | ||
"text": "set remote hardware-watchpoint-limit 1", | ||
"ignoreFailures": false | ||
}, | ||
{ | ||
"description": "Respect Hardware Limitations", | ||
"text": "set remote hardware-breakpoint-limit 2", | ||
"ignoreFailures": false | ||
}, | ||
{ | ||
"description": "Shutdown GDB Server on GDB Detach", | ||
"text": "monitor [target current] configure -event gdb-detach { shutdown }", | ||
"ignoreFailures": false | ||
}, | ||
], | ||
"stopAtConnect": false, | ||
"logging": { | ||
"exceptions": true, | ||
"engineLogging": false, | ||
"moduleLoad": true, | ||
"programOutput": true, | ||
"trace": false, | ||
"traceResponse": false | ||
}, | ||
"useExtendedRemote": true | ||
}, | ||
] | ||
} |
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.