Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bluetooth protocol over wifi?

I'm looking to implement the Bluetooth protocol over a physical Wi-Fi based transport, if that makes sense.
Basically my phone has Bluetooth, and my laptop has a Wi-Fi card (802.11a/b/g).
I know that Wi-Fi operates over the range 2.412 GHz - 2.472 GHz, and that Bluetooth operates over the range 2.402 GHz - 2.480 GHz.
I couldn't help but notice the overlap here. So my questions are:

  • What sort of low-level APIs would I need (preferably in C, on Windows) in order to send a signal out at certain frequencies on the Wi-Fi card?
  • Would I be able to implement a Bluetooth stack on top of this?

So basically, can I transmit Bluetooth using my Wi-Fi card as essentially a radio transmitter?

Thanks

like image 654
martymcfly Avatar asked May 19 '11 15:05

martymcfly


People also ask

Can you send Bluetooth over WiFi?

Sharing Wi-Fi Data Via Bluetooth. Tethering, or phone-as-modem (PAM), is the process of sharing of a mobile device's Internet connection with another device, say, a cellphone or computer. Bluetooth tethering is one of the ways of sharing the wireless connection of an Android device with another device using Bluetooth.

Can I use 802.11 N as Bluetooth?

Despite the frequency-hopping nature of Bluetooth, studies have shown that Bluetooth 802.11b/g/n devices can interfere with each other, particularly at close range (under 2 meters) or when users attempt to use both types of wireless networking at the same time (as with a wireless network connection on a computer also ...

Is Bluetooth a wireless protocol?

Bluetooth is a standardized protocol for sending and receiving data via a 2.4GHz wireless link. It's a secure protocol, and it's perfect for short-range, low-power, low-cost, wireless transmissions between electronic devices.


1 Answers

Implementing the Bluetooth protocol over a physical Wi-Fi based transport does make sense!

Bluetooth high speed (v3.0) defines the possibility to use alternate MAC/PHY layers, known as AMP feature. The L2CAP and higher layer protocols from Bluetooth can be transmitted over a Wi-Fi MAC/PHY layer rather than a Bluetooth MAC/PHY layer with a resulting higher throughput. Some products are on the marked supporting this - look for 'Bluetooth High Speed', AMP or Bluetooth v3.0 support.

like image 128
ZooMan Avatar answered Oct 20 '22 22:10

ZooMan