Skip to content

Commit

Permalink
fix(device_info_service): Update default value for vendor id source t…
Browse files Browse the repository at this point in the history
…o be 0x01 (BLE SIG) since its predominantly used for ble (#336)
  • Loading branch information
finger563 authored Oct 15, 2024
1 parent 81ca8cd commit 9d30976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ble_gatt_server/include/device_info_service.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9d30976

Please sign in to comment.