Browse Source

AP_RTC: make all semaphores recursive

the cost is very similar and this prevents an easy coding error which
can occur on less used code paths
zr-v5.1
Andrew Tridgell 5 years ago
parent
commit
9d63edbf37
  1. 2
      libraries/AP_RTC/AP_RTC.h

2
libraries/AP_RTC/AP_RTC.h

@ -57,7 +57,7 @@ public: @@ -57,7 +57,7 @@ public:
private:
static AP_RTC *_singleton;
HAL_Semaphore_Recursive rsem;
HAL_Semaphore rsem;
source_type rtc_source_type = SOURCE_NONE;
int64_t rtc_shift;

Loading…
Cancel
Save