Skip to content

Commit 06e7b29

Browse files
author
Daniel Jäckle
committed
Apply coding conventions
1 parent bfe098d commit 06e7b29

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

src/radio/radio.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ struct Radio_s
160160
* \param [IN] fixLen Fixed length packets [0: variable, 1: fixed]
161161
* \param [IN] payloadLen Sets payload length when fixed length is used
162162
* \param [IN] crcOn Enables/Disables the CRC [0: OFF, 1: ON]
163-
* \param [IN] FreqHopOn Enables disables the intra-packet frequency hopping
163+
* \param [IN] freqHopOn Enables disables the intra-packet frequency hopping
164164
* FSK : N/A ( set to 0 )
165165
* LoRa: [0: OFF, 1: ON]
166-
* \param [IN] HopPeriod Number of symbols between each hop
166+
* \param [IN] hopPeriod Number of symbols between each hop
167167
* FSK : N/A ( set to 0 )
168168
* LoRa: Number of symbols
169169
* \param [IN] iqInverted Inverts IQ signals (LoRa only)
@@ -177,7 +177,7 @@ struct Radio_s
177177
uint32_t bandwidthAfc, uint16_t preambleLen,
178178
uint16_t symbTimeout, bool fixLen,
179179
uint8_t payloadLen,
180-
bool crcOn, bool FreqHopOn, uint8_t HopPeriod,
180+
bool crcOn, bool freqHopOn, uint8_t hopPeriod,
181181
bool iqInverted, bool rxContinuous );
182182
/*!
183183
* \brief Sets the transmission parameters
@@ -203,10 +203,10 @@ struct Radio_s
203203
* LoRa: Length in symbols (the hardware adds 4 more symbols)
204204
* \param [IN] fixLen Fixed length packets [0: variable, 1: fixed]
205205
* \param [IN] crcOn Enables disables the CRC [0: OFF, 1: ON]
206-
* \param [IN] FreqHopOn Enables disables the intra-packet frequency hopping
206+
* \param [IN] freqHopOn Enables disables the intra-packet frequency hopping
207207
* FSK : N/A ( set to 0 )
208208
* LoRa: [0: OFF, 1: ON]
209-
* \param [IN] HopPeriod Number of symbols between each hop
209+
* \param [IN] hopPeriod Number of symbols between each hop
210210
* FSK : N/A ( set to 0 )
211211
* LoRa: Number of symbols
212212
* \param [IN] iqInverted Inverts IQ signals (LoRa only)
@@ -217,8 +217,8 @@ struct Radio_s
217217
void ( *SetTxConfig )( RadioModems_t modem, int8_t power, uint32_t fdev,
218218
uint32_t bandwidth, uint32_t datarate,
219219
uint8_t coderate, uint16_t preambleLen,
220-
bool fixLen, bool crcOn, bool FreqHopOn,
221-
uint8_t HopPeriod, bool iqInverted, uint32_t timeout );
220+
bool fixLen, bool crcOn, bool freqHopOn,
221+
uint8_t hopPeriod, bool iqInverted, uint32_t timeout );
222222
/*!
223223
* \brief Checks if the given RF frequency is supported by the hardware
224224
*

src/radio/sx1272/sx1272.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,10 @@ uint32_t SX1272Random( void );
229229
* \param [IN] fixLen Fixed length packets [0: variable, 1: fixed]
230230
* \param [IN] payloadLen Sets payload length when fixed length is used
231231
* \param [IN] crcOn Enables/Disables the CRC [0: OFF, 1: ON]
232-
* \param [IN] FreqHopOn Enables disables the intra-packet frequency hopping
232+
* \param [IN] freqHopOn Enables disables the intra-packet frequency hopping
233233
* FSK : N/A ( set to 0 )
234234
* LoRa: [0: OFF, 1: ON]
235-
* \param [IN] HopPeriod Number of symbols between each hop
235+
* \param [IN] hopPeriod Number of symbols between each hop
236236
* FSK : N/A ( set to 0 )
237237
* LoRa: Number of symbols
238238
* \param [IN] iqInverted Inverts IQ signals (LoRa only)
@@ -246,7 +246,7 @@ void SX1272SetRxConfig( RadioModems_t modem, uint32_t bandwidth,
246246
uint32_t bandwidthAfc, uint16_t preambleLen,
247247
uint16_t symbTimeout, bool fixLen,
248248
uint8_t payloadLen,
249-
bool crcOn, bool FreqHopOn, uint8_t HopPeriod,
249+
bool crcOn, bool freqHopOn, uint8_t hopPeriod,
250250
bool iqInverted, bool rxContinuous );
251251

252252
/*!
@@ -273,10 +273,10 @@ void SX1272SetRxConfig( RadioModems_t modem, uint32_t bandwidth,
273273
* LoRa: Length in symbols (the hardware adds 4 more symbols)
274274
* \param [IN] fixLen Fixed length packets [0: variable, 1: fixed]
275275
* \param [IN] crcOn Enables disables the CRC [0: OFF, 1: ON]
276-
* \param [IN] FreqHopOn Enables disables the intra-packet frequency hopping
276+
* \param [IN] freqHopOn Enables disables the intra-packet frequency hopping
277277
* FSK : N/A ( set to 0 )
278278
* LoRa: [0: OFF, 1: ON]
279-
* \param [IN] HopPeriod Number of symbols between each hop
279+
* \param [IN] hopPeriod Number of symbols between each hop
280280
* FSK : N/A ( set to 0 )
281281
* LoRa: Number of symbols
282282
* \param [IN] iqInverted Inverts IQ signals (LoRa only)
@@ -287,8 +287,8 @@ void SX1272SetRxConfig( RadioModems_t modem, uint32_t bandwidth,
287287
void SX1272SetTxConfig( RadioModems_t modem, int8_t power, uint32_t fdev,
288288
uint32_t bandwidth, uint32_t datarate,
289289
uint8_t coderate, uint16_t preambleLen,
290-
bool fixLen, bool crcOn, bool FreqHopOn,
291-
uint8_t HopPeriod, bool iqInverted, uint32_t timeout );
290+
bool fixLen, bool crcOn, bool freqHopOn,
291+
uint8_t hopPeriod, bool iqInverted, uint32_t timeout );
292292

293293
/*!
294294
* \brief Computes the packet time on air in ms for the given payload

src/radio/sx1276/sx1276.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ uint32_t SX1276Random( void );
231231
* \param [IN] fixLen Fixed length packets [0: variable, 1: fixed]
232232
* \param [IN] payloadLen Sets payload length when fixed length is used
233233
* \param [IN] crcOn Enables/Disables the CRC [0: OFF, 1: ON]
234-
* \param [IN] FreqHopOn Enables disables the intra-packet frequency hopping
234+
* \param [IN] freqHopOn Enables disables the intra-packet frequency hopping
235235
* FSK : N/A ( set to 0 )
236236
* LoRa: [0: OFF, 1: ON]
237-
* \param [IN] HopPeriod Number of symbols between each hop
237+
* \param [IN] hopPeriod Number of symbols between each hop
238238
* FSK : N/A ( set to 0 )
239239
* LoRa: Number of symbols
240240
* \param [IN] iqInverted Inverts IQ signals (LoRa only)
@@ -248,7 +248,7 @@ void SX1276SetRxConfig( RadioModems_t modem, uint32_t bandwidth,
248248
uint32_t bandwidthAfc, uint16_t preambleLen,
249249
uint16_t symbTimeout, bool fixLen,
250250
uint8_t payloadLen,
251-
bool crcOn, bool FreqHopOn, uint8_t HopPeriod,
251+
bool crcOn, bool freqHopOn, uint8_t hopPeriod,
252252
bool iqInverted, bool rxContinuous );
253253

254254
/*!
@@ -277,10 +277,10 @@ void SX1276SetRxConfig( RadioModems_t modem, uint32_t bandwidth,
277277
* LoRa: Length in symbols (the hardware adds 4 more symbols)
278278
* \param [IN] fixLen Fixed length packets [0: variable, 1: fixed]
279279
* \param [IN] crcOn Enables disables the CRC [0: OFF, 1: ON]
280-
* \param [IN] FreqHopOn Enables disables the intra-packet frequency hopping
280+
* \param [IN] freqHopOn Enables disables the intra-packet frequency hopping
281281
* FSK : N/A ( set to 0 )
282282
* LoRa: [0: OFF, 1: ON]
283-
* \param [IN] HopPeriod Number of symbols between each hop
283+
* \param [IN] hopPeriod Number of symbols between each hop
284284
* FSK : N/A ( set to 0 )
285285
* LoRa: Number of symbols
286286
* \param [IN] iqInverted Inverts IQ signals (LoRa only)
@@ -291,8 +291,8 @@ void SX1276SetRxConfig( RadioModems_t modem, uint32_t bandwidth,
291291
void SX1276SetTxConfig( RadioModems_t modem, int8_t power, uint32_t fdev,
292292
uint32_t bandwidth, uint32_t datarate,
293293
uint8_t coderate, uint16_t preambleLen,
294-
bool fixLen, bool crcOn, bool FreqHopOn,
295-
uint8_t HopPeriod, bool iqInverted, uint32_t timeout );
294+
bool fixLen, bool crcOn, bool freqHopOn,
295+
uint8_t hopPeriod, bool iqInverted, uint32_t timeout );
296296

297297
/*!
298298
* \brief Computes the packet time on air in ms for the given payload

0 commit comments

Comments
 (0)