@@ -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,
287287void 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
0 commit comments