Skip to content

Commit

Permalink
Merge pull request #77 from AEFeinstein/shooter
Browse files Browse the repository at this point in the history
Shooter
  • Loading branch information
AEFeinstein authored Sep 17, 2023
2 parents d9df853 + d33fa81 commit 9bc1ebe
Show file tree
Hide file tree
Showing 177 changed files with 5,569 additions and 289 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"features": {
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
"upgradePackages": true,
"packages": "build-essential,xorg-dev,libx11-dev,libxinerama-dev,libxext-dev,mesa-common-dev,libglu1-mesa-dev,libasound2-dev,libpulse-dev,libasan8,clang-format,cppcheck,doxygen,python3,python3-pip,python3-venv,cmake,libusb-1.0-0-dev"
"packages": "build-essential,xorg-dev,libx11-dev,libxinerama-dev,libxext-dev,mesa-common-dev,libglu1-mesa-dev,libasound2-dev,libpulse-dev,libasan8,clang-format,cppcheck,doxygen,python3,python3-pip,python3-venv,cmake,libusb-1.0-0-dev,lcov"
}
},
"customizations": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-firmware-and-emulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Post to a Slack channel
if: (github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true) || (github.event_name == 'push' && github.ref_name == 'main')
id: slack
uses: slackapi/slack-github-action@v1.23.0
uses: slackapi/slack-github-action@v1.24.0
with:
# Slack channel id, channel name, or user id to post message.
# See also: https://api.slack.com/methods/chat.postMessage#channels
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
sudo apt update
sudo apt install graphviz default-jre
sudo apt remove doxygen
wget -q -P ~ https://www.doxygen.nl/files/doxygen-1.9.6.linux.bin.tar.gz
tar -xf ~/doxygen-1.9.6.linux.bin.tar.gz -C ~
export PATH="$PATH:$HOME/doxygen-1.9.6/bin"
wget -q -P ~ https://www.doxygen.nl/files/doxygen-1.9.8.linux.bin.tar.gz
tar -xf ~/doxygen-1.9.8.linux.bin.tar.gz -C ~
export PATH="$PATH:$HOME/doxygen-1.9.8/bin"
make docs
- name: Setup Pages
uses: actions/configure-pages@v3
Expand Down
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
*.obj
*.elf

# Coverage files
*.gcda
*.gcno

# Linker output
*.ilk
*.map
Expand Down Expand Up @@ -54,6 +58,7 @@ dkms.conf
build
sdkconfig.old
docs/html
docs/*.pu

.vscode/c_cpp_properties.json
.vscode/settings.json
Expand All @@ -69,3 +74,10 @@ swadge_emulator
crash-*.txt
screenshot-*.bmp
rec-*.csv

*.pyc
tools/rayMapEditor/autosave.rmd
perf.data
*.stackdump
coverage/
coverage.info
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/swadge_emulator",
"args": [],
"args": ["-t"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
Expand Down
Loading

0 comments on commit 9bc1ebe

Please sign in to comment.