Skip to content

Commit bb4db2b

Browse files
committed
Fix example name
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 9ffe7f5 commit bb4db2b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build_examples.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,23 +65,23 @@ jobs:
6565
pip install --upgrade platformio
6666
6767
- name: Run PlatformIO
68-
if: matrix.example != 'examples/k_concurrent_logger/'
68+
if: matrix.example != 'examples/j_external_pcint_library/'
6969
env:
7070
PLATFORMIO_CI_SRC: ${{ matrix.example }}
7171
run: |
7272
echo "${{ env.LIBRARY_INSTALL_SOURCE }}"
7373
pio lib --global install ${{ env.LIBRARY_INSTALL_SOURCE }}
7474
pio lib --global install EnableInterrupt
75-
platformio lib --global update
7675
platformio ci --board=mayfly --board=feather32u4 --board=adafruit_feather_m0 --board=uno --board=megaatmega2560 --board=huzzah --board=featheresp32
76+
pio lib --global uninstall SDI-12
7777
7878
- name: Run PlatformIO
79-
if: matrix.example == 'examples/k_concurrent_logger/'
79+
if: matrix.example == 'examples/j_external_pcint_library/'
8080
env:
8181
PLATFORMIO_CI_SRC: ${{ matrix.example }}
8282
run: |
8383
echo "${{ env.LIBRARY_INSTALL_SOURCE }}"
8484
pio lib --global install ${{ env.LIBRARY_INSTALL_SOURCE }}
8585
pio lib --global install EnableInterrupt
86-
platformio lib --global update
87-
platformio ci --board=mayfly --board=feather32u4 --board=adafruit_feather_m0 --board=uno --board=megaatmega2560
86+
platformio ci --board=mayfly --board=feather32u4 --board=adafruit_feather_m0 --board=uno --board=megaatmega2560
87+
pio lib --global uninstall SDI-12

examples/k_concurrent_logger/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[//]: # ( @page example_k_page Example K: Concurrent Measurements )
22
# Example K: Concurrent Measurements
33

4-
This is very similar to example B - finding all attached sensors and logging data from them.
5-
Unlike example B, however, which waits for each sensor to complete a measurement, this asks all sensors to take measurements concurrently and then waits until each is finished to query for results.
4+
This is very similar to example D - finding all attached sensors and logging data from them.
5+
Unlike example D, however, which waits for each sensor to complete a measurement, this asks all sensors to take measurements concurrently and then waits until each is finished to query for results.
66
This can be much faster than waiting for each sensor when you have multiple sensor attached.
77

88
[//]: # ( @section k_concurrent_logger_pio PlatformIO Configuration )

0 commit comments

Comments
 (0)