From 9d3097625d752823e7605d613f5bc69f5ff22695 Mon Sep 17 00:00:00 2001 From: William Emfinger Date: Tue, 15 Oct 2024 14:09:52 -0500 Subject: [PATCH] fix(device_info_service): Update default value for vendor id source to be 0x01 (BLE SIG) since its predominantly used for ble (#336) --- components/ble_gatt_server/include/device_info_service.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ble_gatt_server/include/device_info_service.hpp b/components/ble_gatt_server/include/device_info_service.hpp index bcfce6211..1e7740cb5 100644 --- a/components/ble_gatt_server/include/device_info_service.hpp +++ b/components/ble_gatt_server/include/device_info_service.hpp @@ -36,7 +36,7 @@ class DeviceInfoService : public BaseComponent { public: /// Plug and Play ID struct PnpId { - uint8_t vendor_id_source = 0x02; ///< 0x01 for Bluetooth SIG, 0x02 for USB + uint8_t vendor_id_source = 0x01; ///< 0x01 for Bluetooth SIG, 0x02 for USB uint16_t vendor_id; ///< Vendor ID uint16_t product_id; ///< Product ID uint16_t product_version; ///< Product version