diff --git a/BLE/BLE_Utils.c b/BLE/BLE_Utils.c index 1a05031..a0030f4 100644 --- a/BLE/BLE_Utils.c +++ b/BLE/BLE_Utils.c @@ -23,6 +23,8 @@ #include #include +const uint8_t BLE_BROADCAST_ADDRESS[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; + //! Converts a 6-byte Bluetooth Low Energy address to a human-readable string (for logging). /*! * \param bd_addr The Bluetooth address as a 6-byte array diff --git a/BLE/BLE_Utils.h b/BLE/BLE_Utils.h index 42cd2b2..84837df 100644 --- a/BLE/BLE_Utils.h +++ b/BLE/BLE_Utils.h @@ -19,4 +19,6 @@ * file in the root of this repository. If not, see . */ + extern const uint8_t BLE_BROADCAST_ADDRESS[6]; + const char* BLE_ADDR_To_Str(const uint8_t bd_addr[6]); \ No newline at end of file