File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
features/lorawan/lorastack Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -370,14 +370,14 @@ class LoRaMac {
370
370
*
371
371
* @return LORAWAN_STATUS_OK or a negative error code on failure.
372
372
*/
373
- lorawan_status_t prepare_join (const lorawan_connect_t *params, bool is_otaa = true );
373
+ lorawan_status_t prepare_join (const lorawan_connect_t *params, bool is_otaa);
374
374
375
375
/* *
376
376
* @brief join Joins the network.
377
377
* @param is_otaa True if joining is to be done using OTAA, false for ABP.
378
378
* @return LORAWAN_STATUS_OK or a negative error code on failure.
379
379
*/
380
- lorawan_status_t join (bool is_otaa = true );
380
+ lorawan_status_t join (bool is_otaa);
381
381
382
382
private:
383
383
/* *
Original file line number Diff line number Diff line change 60
60
#elif MBED_CONF_LORA_PHY == US915_HYBRID
61
61
#include "lorawan/lorastack/phy/LoRaPHYUS915Hybrid.h"
62
62
#define LoRaPHY_region LoRaPHYUS915Hybrid
63
- #else
64
- #error "Unsupported region, check your configuration."
65
63
#endif //MBED_CONF_LORA_PHY == VALUE
66
64
#else
67
65
#error "Must set LoRa PHY layer parameters."
You can’t perform that action at this time.
0 commit comments