Skip to content

Commit

Permalink
fix: setAppEui inline method
Browse files Browse the repository at this point in the history
Fixes #26

Signed-off-by: tcpipchip <[email protected]>
  • Loading branch information
tcpipchip authored and fpistm committed Jul 19, 2023
1 parent ae19ba4 commit 5029c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/STM32LoRaWAN.h
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ class STM32LoRaWAN : public Stream {
bool setDevEui(String value) { return setDevEui(value.c_str()); }
bool setDevEui(uint64_t value) { return mibSetUint64("DevEui", MIB_DEV_EUI, value); }
bool setAppEui(const char *value) { return mibSetHex("AppEui", MIB_JOIN_EUI, value); }
bool setAppEui(String value) { return setDevEui(value.c_str()); }
bool setAppEui(String value) { return setAppEui(value.c_str()); }
bool setAppEui(uint64_t value) { return mibSetUint64("AppEui", MIB_JOIN_EUI, value); }
bool setDevAddr(const char *value) { return mibSetHex("DevAddr", MIB_DEV_ADDR, value); }
bool setDevAddr(String value) { return setDevAddr(value.c_str()); }
Expand Down

0 comments on commit 5029c90

Please sign in to comment.