Skip to content

Commit

Permalink
Correct time offset typo
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <[email protected]>
  • Loading branch information
SRGDamia1 committed Oct 7, 2024
1 parent 3c0bcfa commit 058c974
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prepare_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
uses: EnviroDIY/workflows/.github/workflows/prepare_release.yaml@main
secrets: inherit
with:
include_dependencies: ${{ inputs.include_dependencies }}
include_dependencies: ${{ ( true ) || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true') }}
3 changes: 2 additions & 1 deletion src/LoRa_AT_Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
__attribute__((error("Not available on this modem type")))
#define LORA_AT_ATTR_NOT_IMPLEMENTED __attribute__((error("Not implemented")))

#if defined(__AVR__) && !defined(__AVR_ATmega4809__)
#if (defined(__AVR__) || defined(ARDUINO_ARCH_AVR)) && \
!defined(__AVR_ATmega4809__)
#define LORA_AT_PROGMEM PROGMEM
typedef const __FlashStringHelper* GsmConstStr;
#define GFP(x) (reinterpret_cast<GsmConstStr>(x))
Expand Down
2 changes: 1 addition & 1 deletion src/LoRa_AT_Time.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ enum LoRa_AT_EpochStart {
Y2K = 1, ///< Use an epoch starting 1/1/2000, as some RTC's and Arduinos do
///< (946684800s ahead of UNIX epoch, 630806400s ahead of GPS epoch)
GPS = 2 ///< Use the GPS epoch starting Jan 5, 1980 (315878400s ahead of UNIX
///< epoch, 630806400s behind of GPS epoch)
///< epoch, 630806400s behind of Y2K epoch)
};

template <class modemType>
Expand Down

0 comments on commit 058c974

Please sign in to comment.