File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 14
14
#include < Arduino.h>
15
15
#include < limits.h>
16
16
17
- using namespace arduino ::time ;
17
+ using namespace arduino ::tattempt ;
18
18
19
19
SCENARIO (" Test broker connection retries" ) {
20
20
TimedAttempt _connection_attempt (0 ,0 );
Original file line number Diff line number Diff line change 11
11
12
12
#include " ./time/TimedAttempt.h"
13
13
14
- using namespace arduino ::time ;
14
+ using namespace arduino ::tattempt ;
Original file line number Diff line number Diff line change 12
12
#include < Arduino.h>
13
13
#include " TimedAttempt.h"
14
14
15
- namespace arduino { namespace time {
15
+ namespace arduino { namespace tattempt {
16
16
17
17
TimedAttempt::TimedAttempt (unsigned long minDelay, unsigned long maxDelay)
18
18
: _minDelay(minDelay)
@@ -75,4 +75,4 @@ namespace arduino { namespace time {
75
75
return _retryDelay;
76
76
}
77
77
78
- }} // arduino::time
78
+ }} // arduino::tattempt
Original file line number Diff line number Diff line change 10
10
11
11
#pragma once
12
12
13
- namespace arduino { namespace time {
13
+ namespace arduino { namespace tattempt {
14
14
15
15
/* *
16
16
* The TimedAttempt class manages retry attempts with configurable delays.
@@ -97,4 +97,4 @@ namespace arduino { namespace time {
97
97
unsigned int _retryCount;
98
98
};
99
99
100
- }} // arduino::time
100
+ }} // arduino::tattempt
You can’t perform that action at this time.
0 commit comments