minipcie网卡走不走usb总线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了minipcie网卡走不走usb总线相关的知识,希望对你有一定的参考价值。

参考技术A 走。minipcie网卡需要走usb通道,否则网卡连接蓝牙将会无效。minipcie广泛用笔记本电脑主板,电视卡以及一些多功能扩展卡等硬件设备。

关于同时链接USB耳机与蓝牙耳机时,麦克风数据只走USB不走蓝牙耳机

   mAudioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);

 private void openSco()
        if (!mAudioManager.isBluetoothScoAvailableOffCall())
            Log.d(TAG, "系统不支持蓝牙录音");
            return;
       
        //mAudioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
        //蓝牙录音的关键,启动SCO连接,耳机话筒才起作用
        mAudioManager.stopBluetoothSco();
        mAudioManager.startBluetoothSco();
        //蓝牙SCO连接建立需要时间,连接建立后会发出ACTION_SCO_AUDIO_STATE_CHANGED消息,通过接收该消息而进入后续逻辑。
        //也有可能此时SCO已经建立,则不会收到上述消息,可以startBluetoothSco()前先
        //stopBluetoothSco()
        registerReceiver(new BroadcastReceiver()
            @Override
            public void onReceive(Context context, Intent intent)
                int state = intent.getIntExtra(AudioManager.EXTRA_SCO_AUDIO_STATE, -1);
                if (AudioManager.SCO_AUDIO_STATE_CONNECTED == state)
                    mAudioManager.setBluetoothScoOn(true);  //打开SCO
                    //voiceRecogniton();//开始语音识别
                    unregisterReceiver(this);  //别遗漏
                else //等待一秒后再尝试启动SCO
                    try
                        Thread.sleep(1000);
                    catch (InterruptedException e)
                        e.printStackTrace();
                   
                    mAudioManager.startBluetoothSco();
               
           
        , new IntentFilter(AudioManager.ACTION_SCO_AUDIO_STATE_CHANGED));
   

  private void closeSco()
        if(mAudioManager.isBluetoothScoOn())
            mAudioManager.setBluetoothScoOn(false);
            mAudioManager.stopBluetoothSco();
       
   
 

以上是关于minipcie网卡走不走usb总线的主要内容,如果未能解决你的问题,请参考以下文章

EC20 minipcie版4g模块开发笔记

小身材,大能量:Mini PCIe千兆光纤以太网卡 结构不同 性能更好

OpenWrt 4G网卡拨号配置

PCI_PCIe_miniPCIe瑙勬牸璇存槑

openwrtdocker重置

rtl8188eu与mt7601驱动相同吗