Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.35 release candidate: GroPoint Modbus; Xbee & Digi WiFi fixes; Prep for batch transmission #463

Merged
merged 103 commits into from
May 18, 2024

Commits on Mar 27, 2023

  1. GroPoint Profile draft wrapper

    For Modbus GPLP-8 sensor only, for now.
    aufdenkampe committed Mar 27, 2023
    1 Configuration menu
    Copy the full SHA
    cd4f3c3 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2023

  1. Update GroPointProfileGPLP8.h

    ...replacing any vestiges from `YosemitechY4000.h`
    aufdenkampe committed Mar 28, 2023
    1 Configuration menu
    Copy the full SHA
    a4b6541 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. Shorten naming to GroPointGPLP8

    from GroPointProfileGPLP8
    aufdenkampe committed Mar 29, 2023
    1 Configuration menu
    Copy the full SHA
    70182c3 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2023

  1. Configuration menu
    Copy the full SHA
    fd02919 View commit details
    Browse the repository at this point in the history
  2. publishers: fix undefined behavior in response code processing

    Correctly initialize response code variable terminator.
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    55973fa View commit details
    Browse the repository at this point in the history
  3. dataPublisherBase: remove redundant zero init of TX buffer

    Saves 750 bytes of flash as the buffer can be placed in .bss to be
    zero-initialized instead of .data.
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    507b317 View commit details
    Browse the repository at this point in the history
  4. LoggerBase: optimize setFileTimestamp

    Saves ~110 bytes of flash and substantial stack
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    83b27ea View commit details
    Browse the repository at this point in the history
  5. LoggerModem: optimize CSQ conversion functions

    Saves ~200 bytes of RAM and ~360 bytes of flash.
    
    The equations reproduce the tables previously found in the source code
    exactly. The reason for the values in the original tables is unknown.
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    f0d2637 View commit details
    Browse the repository at this point in the history
  6. LoggerBase: always power down modem after RTC sync

    The test for "15 seconds before the next logging interval" has been wrong
    for years, possibly since this code was written, with no apparent
    consequence. The behavior is additionally confusing to users deploying the
    devices and causes problems with logging as the modem won't get turned
    off for a long time.
    
    Remove it completely to solve the problems.
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    2692821 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    389c162 View commit details
    Browse the repository at this point in the history
  8. publishers: refactor transmit buffer usage

    Use cleaner interface and common functions that avoid repeated snprintf
    and strlen usage to save ~2.5KB of flash and dozens of lines of code.
    
    Removes extra \r\n from HTTP requests as a side effect, which were against
    spec and caused spurious 400 Bad Request status messages from servers.
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    493215d View commit details
    Browse the repository at this point in the history
  9. dataPublisherBase: widen sendEveryX and ditch sendOffset

    sendEveryX will be used in the future for data buffering functionality. Increase
    its width to an int to allow larger buffers when desired.
    
    Delete sendOffset completely as there is little reason for that particular
    functionality. The offset will be in effect set randomly using the time the
    datalogger initially powers on.
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    2c87ff0 View commit details
    Browse the repository at this point in the history
  10. publishers: remove hearsay about logger construction order

    The C++ standard specifies that all objects in the same translation unit
    (i.e. source file) are constructed in order of declaration. Since this is
    the most common case when using Modular Sensors, the described case cannot
    occur.
    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    f83a96f View commit details
    Browse the repository at this point in the history
  11. update changelog

    tpwrules committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    d82635e View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2023

  1. GroPoint all 21 vars logging

    Everything is working well!
    aufdenkampe committed Apr 18, 2023
    1 Configuration menu
    Copy the full SHA
    e766e3b View commit details
    Browse the repository at this point in the history
  2. 1 Configuration menu
    Copy the full SHA
    d9b1d63 View commit details
    Browse the repository at this point in the history
  3. 1 Configuration menu
    Copy the full SHA
    426a78f View commit details
    Browse the repository at this point in the history
  4. 1 Configuration menu
    Copy the full SHA
    856b67a View commit details
    Browse the repository at this point in the history
  5. 2 Configuration menu
    Copy the full SHA
    0c94041 View commit details
    Browse the repository at this point in the history
  6. 2 Configuration menu
    Copy the full SHA
    382875a View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. 2 Configuration menu
    Copy the full SHA
    64b5730 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2023

  1. gropointModel = GPLPX vs UNKNOWN

    Replace UNKNOWN w/ GPLPX
    for `gropointModel`, because it conflicted with YosemiTechModbus `UNKNOWN`
    aufdenkampe committed May 31, 2023
    2 Configuration menu
    Copy the full SHA
    4e28000 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2023

  1. Handle no sim card on SIM7080

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 14, 2023
    Configuration menu
    Copy the full SHA
    94480e6 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2023

  1. build files for Digi WiFi s6b #347

    neilh20 authored and neilh20 committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    4123f6a View commit details
    Browse the repository at this point in the history
  2. update for Digi WiFi s6b #347

    neilh20 authored and neilh20 committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    18257c7 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2023

  1. Bump SHT dependecy

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    b4eca91 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #441 from neilh10/digi_wifi_s6b_stability

    Digi wifi s6b stability
    SRGDamia1 authored Jun 23, 2023
    Configuration menu
    Copy the full SHA
    19757ab View commit details
    Browse the repository at this point in the history
  3. removed extra a and sensor tests folders

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    9ba15db View commit details
    Browse the repository at this point in the history
  4. Removed code to not update metadata, for now

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    2 Configuration menu
    Copy the full SHA
    b1f3afc View commit details
    Browse the repository at this point in the history
  5. Add wake and power on checks to connectInternet

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    49d1811 View commit details
    Browse the repository at this point in the history
  6. Add comments to modem setup

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    98cf411 View commit details
    Browse the repository at this point in the history
  7. Add comments to NIST connection

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    7abc297 View commit details
    Browse the repository at this point in the history
  8. Remove commented code in getModemSignalQuality

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    470c1df View commit details
    Browse the repository at this point in the history
  9. Removed errant comma

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    63b3110 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2023

  1. Restore modem detailed versioning

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 26, 2023
    2 Configuration menu
    Copy the full SHA
    390f844 View commit details
    Browse the repository at this point in the history
  2. Ctor for sleep assoc, check pins for sleep opts

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 26, 2023
    2 Configuration menu
    Copy the full SHA
    8d9152b View commit details
    Browse the repository at this point in the history
  3. Bump TinyGSM

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    a008a69 View commit details
    Browse the repository at this point in the history
  4. Use changeSettingIfNeeded throughout setup

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 26, 2023
    3 Configuration menu
    Copy the full SHA
    9082d42 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2023

  1. Simplified XBee setup connection check

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 28, 2023
    7 Configuration menu
    Copy the full SHA
    dc23a83 View commit details
    Browse the repository at this point in the history
  2. Remove outdated comment

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 28, 2023
    Configuration menu
    Copy the full SHA
    fd3a696 View commit details
    Browse the repository at this point in the history
  3. Reimplement modem polling config

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 28, 2023
    3 Configuration menu
    Copy the full SHA
    93db578 View commit details
    Browse the repository at this point in the history
  4. Apply polling to other XBee

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 28, 2023
    Configuration menu
    Copy the full SHA
    f9d9476 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2023

  1. Update ChangeLog.md

    #347 fixes
    neilh10 authored Jun 30, 2023
    Configuration menu
    Copy the full SHA
    1e096c9 View commit details
    Browse the repository at this point in the history
  2. change version

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    0ba34d7 View commit details
    Browse the repository at this point in the history
  3. Fixed GroPoint build if flag

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    8097325 View commit details
    Browse the repository at this point in the history
  4. Made sensor var number required input for GroPoint

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    7db7d3a View commit details
    Browse the repository at this point in the history
  5. Reflow some comments (clang formatted)

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    750efd2 View commit details
    Browse the repository at this point in the history
  6. Using new GroPoint variables in example

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    2 Configuration menu
    Copy the full SHA
    9860be1 View commit details
    Browse the repository at this point in the history
  7. Fixed snaked GroPoint snipped tags

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    0e5bb2c View commit details
    Browse the repository at this point in the history
  8. Merge pull request #446 from neilh10/patch-1

    Update ChangeLog.md
    SRGDamia1 authored Jun 30, 2023
    Configuration menu
    Copy the full SHA
    88e2422 View commit details
    Browse the repository at this point in the history
  9. Woops, fixed double tag in changelog

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    a7a09c7 View commit details
    Browse the repository at this point in the history
  10. Add GroPoint to dependency installs

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    2289e58 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #445 from EnviroDIY/xbee_fixes

    Xbee fixes
    SRGDamia1 authored Jun 30, 2023
    Configuration menu
    Copy the full SHA
    1c5a6e4 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    82ba1d3 View commit details
    Browse the repository at this point in the history
  13. Merge branch 'develop' into gropoint_modbus, fix conflicts

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    7bee373 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. Fix doxygen linkage

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    e2d99ce View commit details
    Browse the repository at this point in the history
  2. Fix undefined variable in example

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    48d9338 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #439 from EnviroDIY/gropoint_modbus

    Add support for Gropoint Profile Probe using Modbus
    SRGDamia1 authored Jul 11, 2023
    Configuration menu
    Copy the full SHA
    f0f96fe View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. Bump Adafruit Unified Sensor

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    7171ba2 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2023

  1. Merge pull request #434 from tpwrules/batch-refactoring

    General cleanup and refactoring in preparation for batch transmission
    SRGDamia1 authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    a40eb7f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0220888 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    49453bb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d1ebc5e View commit details
    Browse the repository at this point in the history
  5. fix typo

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    4a993a6 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. Fix GroPoint success for temperature

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    5a4d77f View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Configuration menu
    Copy the full SHA
    7dcc602 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Remove year from copyright lines

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    0e25aa6 View commit details
    Browse the repository at this point in the history
  2. preliminary implementation of VegaPuls

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    3fc1f68 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Add docs and adjust doxygen tags

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    4518052 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Update python regex

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    186db97 View commit details
    Browse the repository at this point in the history
  2. Update VegaPuls timing

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    bbd6f47 View commit details
    Browse the repository at this point in the history
  3. Fix documented param name

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    19a4673 View commit details
    Browse the repository at this point in the history
  4. Wait for ESP to connect on saved credentials

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    cef3921 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Fix debug for Keller

    @hodsonm-cws, this clears the compile error when you define `MS_KELLERPARENT_DEBUG_DEEP` in the platoformio.ini.
    aufdenkampe committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e601ab5 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Update actions

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 9, 2024
    Configuration menu
    Copy the full SHA
    077656d View commit details
    Browse the repository at this point in the history
  2. Update gropoint docs

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 9, 2024
    Configuration menu
    Copy the full SHA
    ba2c205 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Add M4's to test

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 10, 2024
    Configuration menu
    Copy the full SHA
    6f08fee View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Add XBee Mayfly 1.x pins

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 13, 2024
    Configuration menu
    Copy the full SHA
    44504ca View commit details
    Browse the repository at this point in the history
  2. Some publisher comments

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 13, 2024
    Configuration menu
    Copy the full SHA
    120cc68 View commit details
    Browse the repository at this point in the history
  3. Always attempt last connection on WiFi

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 13, 2024
    Configuration menu
    Copy the full SHA
    5ce948e View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. XBee Tweek

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    e9717d0 View commit details
    Browse the repository at this point in the history
  2. Move XBee doc

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    a9b307c View commit details
    Browse the repository at this point in the history
  3. Update readme and change log

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    f45d506 View commit details
    Browse the repository at this point in the history
  4. Adjust version in change log

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    621497f View commit details
    Browse the repository at this point in the history
  5. Merge pull request #465 from EnviroDIY/vegapuls

    Vegapuls Implementation
    SRGDamia1 authored May 15, 2024
    Configuration menu
    Copy the full SHA
    0fb9162 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. Allow MAX_NUMBER_VARS to be defined by build flag

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    d660e88 View commit details
    Browse the repository at this point in the history
  2. Clean some lingering copyrights

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    479eb66 View commit details
    Browse the repository at this point in the history
  3. Only reset XBee Wifi after 4 *failed* metadata attempts

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    0368703 View commit details
    Browse the repository at this point in the history
  4. Add to-do notes for missing modem info pieces.

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    8a23cc5 View commit details
    Browse the repository at this point in the history
  5. Change token for changelog reminder

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    5ca53f1 View commit details
    Browse the repository at this point in the history
  6. Add more details to changelog

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    cb13b94 View commit details
    Browse the repository at this point in the history
  7. Fix refs to BMP388 library in actions

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    7f3447f View commit details
    Browse the repository at this point in the history
  8. Bump version of upload artifact

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    4a57245 View commit details
    Browse the repository at this point in the history
  9. XBee fix for non-AVR

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    93ba368 View commit details
    Browse the repository at this point in the history
  10. CI adjustments

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    c96337b View commit details
    Browse the repository at this point in the history
  11. Bump dependencies, fix file reference for SDFat 2.2.3

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    2e54314 View commit details
    Browse the repository at this point in the history
  12. Bump download artifact version

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    7acf851 View commit details
    Browse the repository at this point in the history
  13. Shorten env names

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    6c3df68 View commit details
    Browse the repository at this point in the history
  14. SAMD51 watchdog fix

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    d245046 View commit details
    Browse the repository at this point in the history
  15. Workaround for boards not supported by Enable Interrupts

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    1696601 View commit details
    Browse the repository at this point in the history
  16. No M4 for now

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 16, 2024
    Configuration menu
    Copy the full SHA
    336e312 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. No RTCZero for M4

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 17, 2024
    Configuration menu
    Copy the full SHA
    6db4f4b View commit details
    Browse the repository at this point in the history
  2. Add missing slash

    Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
    SRGDamia1 committed May 17, 2024
    Configuration menu
    Copy the full SHA
    1c2c275 View commit details
    Browse the repository at this point in the history