Skip to content

Commit

Permalink
Merge pull request #129 from robsonos/master
Browse files Browse the repository at this point in the history
fix: comparison between signed and unsigned integer in RAK11300 SimpleTimer
  • Loading branch information
beegee-tokyo authored Jul 12, 2024
2 parents 8554830 + 57d8b44 commit 5c28c50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/boards/mcu/rak11300/SimpleTimer.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class SimpleTimer
volatile timer_callback callbacks[MAX_TIMERS];

// delay values
volatile long delays[MAX_TIMERS];
volatile unsigned long delays[MAX_TIMERS];

// number of runs to be executed for each timer
volatile int maxNumRuns[MAX_TIMERS];
Expand All @@ -129,4 +129,4 @@ class SimpleTimer
int numTimers;
};

#endif
#endif

0 comments on commit 5c28c50

Please sign in to comment.