Project Home
Project Home
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Bluetooth stack iopkt interfacing: (3 Items)
   
Bluetooth stack iopkt interfacing  
Hello,

I have a third party bluetooth stack supporting PAN profile. Stack provides Rx and Tx callbacks to hook up the stack to 
networking layer. Our product does not have io-bluetooth resource manager. 

1) What's a good example to to initiate creation of glue code residing in io-pkt that interfaces to bluetooth stack 
process?
2) Is message passing used to Tx and Rx data between io-pkt and bluetooth stack process in this case?

Regards,
Sesh
Re: Bluetooth stack iopkt interfacing  
One implementation of this in the past used an io-pkt 'tun' interface:

http://man.netbsd.org/HEAD/usr/share/man/html4/tun.html

On Thu, Oct 29, 2015 at 02:33:24PM -0400, Sesh wrote:
> Hello,
> 
> I have a third party bluetooth stack supporting PAN profile. Stack provides Rx and Tx callbacks to hook up the stack 
to networking layer. Our product does not have io-bluetooth resource manager. 
> 
> 1) What's a good example to to initiate creation of glue code residing in io-pkt that interfaces to bluetooth stack 
process?
> 2) Is message passing used to Tx and Rx data between io-pkt and bluetooth stack process in this case?
> 
> Regards,
> Sesh
> 
> 
> 
> _______________________________________________
> 
> Networking Drivers
> http://community.qnx.com/sf/go/post114840
> To cancel your subscription to this discussion, please e-mail drivers-networking-unsubscribe@community.qnx.com
Re: Bluetooth stack iopkt interfacing  
Thanks Sean.