Skip to content

Commit 6bbb771

Browse files
committed
Trim whitespace
1 parent 699a749 commit 6bbb771

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Arduino_LoRaWAN.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class Arduino_LoRaWAN
127127
};
128128

129129
// US-like regions use a 72-bit mask of enabled channels.
130-
// EU-like regions use a a table of 16 frequencies with
130+
// EU-like regions use a a table of 16 frequencies with
131131
// 100-Hz resolution (at 24 bits, that's 48 bytes)
132132
// In this encoding, we use zeros to represent disabled channels
133133

@@ -136,9 +136,9 @@ class Arduino_LoRaWAN
136136
enum eMaskKind : uint8_t { kEUlike = 0, kUSlike = 1 };
137137

138138
uint8_t Tag;
139-
uint8_t Size;
139+
uint8_t Size;
140140
};
141-
141+
142142
struct SessionChannelMask_US_like
143143
{
144144
enum : uint32_t { nCh = 64 + 8 };
@@ -157,8 +157,8 @@ class Arduino_LoRaWAN
157157
else
158158
return false;
159159
}
160-
161-
void clearAll()
160+
161+
void clearAll()
162162
{
163163
for (auto i = 0u; i < nCh / 8; ++i)
164164
this->ChannelMask[i] = 0;
@@ -208,7 +208,7 @@ class Arduino_LoRaWAN
208208
return (uint32_t(chPtr[0] << 16) |
209209
uint32_t(chPtr[1] << 8) |
210210
uint32_t(chPtr[2])) * 100;
211-
}
211+
}
212212
}
213213

214214
// record the frequency of a given channel.
@@ -227,7 +227,7 @@ class Arduino_LoRaWAN
227227
}
228228

229229
// clear all frequencies
230-
void clearAll()
230+
void clearAll()
231231
{
232232
std::memset(this->ChannelFreq, 0, sizeof(this->ChannelFreq));
233233
}
@@ -290,7 +290,7 @@ class Arduino_LoRaWAN
290290
int16_t LinkIntegrity; // the link-integrity counter.
291291
uint8_t Redundancy; // NbTrans (in bits 3:0)
292292
uint8_t DutyCycle; // Duty cycle (per [1.0.2] 5.3)
293-
// TODO([email protected]) complete
293+
// TODO([email protected]) complete
294294
};
295295

296296

0 commit comments

Comments
 (0)