1# Copyright 2020 The ChromiumOS Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4"""Functions related to Intel Bluetooth components. 5 6See proto definitions for descriptions of arguments. 7""" 8 9load("//config/util/component.star", "comp") 10 11VENDOR_ID = "00E0" 12VERSION = "0400" 13 14def _model(model): 15 """Builds a Component proto for Intel Bluetooth.""" 16 return comp.create_bt(VENDOR_ID, model, VERSION) 17 18intel_bt = struct( 19 model = _model, 20) 21