Skip to content

Commit 1b44d01

Browse files
committed
Update FAQ Doxygen refs
Clear CI cache
1 parent 3358c43 commit 1b44d01

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/examples.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ jobs:
2323
with:
2424
path: |
2525
~/.local/bin
26-
key: ${{ runner.os }}-local-bin
26+
key: ${{ runner.os }}-local-bin-v1
2727

2828
- name: Cache Arduino Cores and Libraries
2929
uses: actions/[email protected]
3030
with:
3131
path: |
3232
~/.arduino15
3333
~/Arduino/libraries
34-
key: ${{ runner.os }}-arduino-${{ github.sha }}
35-
restore-keys: ${{ runner.os }}-arduino-
34+
key: ${{ runner.os }}-arduino-v1-${{ github.sha }}
35+
restore-keys: ${{ runner.os }}-arduino-v1-
3636

3737
- name: Cache Compiled Arduino Cores and Sketches
3838
uses: actions/[email protected]
3939
with:
4040
path: |
4141
/tmp/arduino-sketch-*
4242
/tmp/core-*
43-
key: ${{ runner.os }}-arduino-compiled-${{ matrix.board }}-${{ github.sha }}
44-
restore-keys: ${{ runner.os }}-arduino-compiled-${{ matrix.board }}-
43+
key: ${{ runner.os }}-arduino-compiled-v1-${{ matrix.board }}-${{ github.sha }}
44+
restore-keys: ${{ runner.os }}-arduino-compiled-v1-${{ matrix.board }}-
4545

4646
- name: Update $PATH
4747
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
@@ -77,8 +77,8 @@ jobs:
7777
uses: actions/[email protected]
7878
with:
7979
path: ~/.venv
80-
key: ${{ runner.os }}-python-venv-${{ github.sha }}
81-
restore-keys: ${{ runner.os }}-python-venv-
80+
key: ${{ runner.os }}-python-venv-v1-${{ github.sha }}
81+
restore-keys: ${{ runner.os }}-python-venv-v1-
8282

8383
- name: Install Python Packages
8484
run: |

doxygen/pages/FAQ.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,10 @@ adds up, and you might find that your board doesn't have enough memory available
217217
to run your program.
218218
219219
To get around this problem, the first step would be to combine many elements
220-
into one. For example, if you have an array of 32 `CCButton` elements, replace
221-
it with a single `CCButtons<32>` element. If you have 32 `NoteLED` elements,
222-
replace it with a single `NoteRangeLEDs<32>` element.
220+
into one. For example, if you have an array of 32 @ref CCButton elements, replace
221+
it with a single @ref CCButtons<32> element.
222+
If you have 32 @ref NoteLED elements,
223+
replace it with a single @ref NoteRangeLEDs<32> element.
223224
224225
Not all MIDI elements have an alternative that can handle many inputs or outputs
225226
at once. If the one for your particular use case is missing, feel free to open

0 commit comments

Comments
 (0)