File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -500,6 +500,7 @@ class STM32LoRaWAN : public Stream {
500
500
*
501
501
* \param mode This parameter is ignored, the mode is automatically
502
502
* determined based on the selected power.
503
+ * \param index See power(uint8_t) for details.
503
504
*/
504
505
bool power (_rf_mode mode, uint8_t index) { (void )mode; return power (index); }
505
506
@@ -992,8 +993,8 @@ class STM32LoRaWAN : public Stream {
992
993
* Helper that prints an error and then always returns false, to
993
994
* allow for combining reporting and returning in a single line.
994
995
*/
995
- __attribute__ ((format(printf, 1 , 2 )) )
996
- static bool failure ( const char *fmt, ... );
996
+ static bool failure ( const char *fmt, ... )
997
+ __attribute__((format(printf, 1 , 2 )) );
997
998
998
999
/* * Empty the rx buffer */
999
1000
void clear_rx () { rx_ptr = rx_buf + sizeof (rx_buf); }
You can’t perform that action at this time.
0 commit comments