I'm getting back into programming after taking way too long off.
I have this great idea for an app for OSx, but can't get past the first part. Using XCode, I have code that compiles on a peecee, but can't find the required header files, nor any documentation on what are the right alternatives for this OS.
It's looking for
Which sequentially bombs out. I was able to get bluetooth.h to work using iobluetooth.h (at least the header file is there), but after looking in the include directories, have struck out on anything remotely like the files I am looking for. Not even out of the gate, and I can't even get the sample code to compile. Maybe I'm out of my pay grade, but I'm just trying to see if I can get the OS to even see any Bluetooth devices, and will build on that later.
Is there some documentation on Bluetooth that I can't find? Apple's own samples are horrible btw.
Thanks for any light shed on this issue.
I have this great idea for an app for OSx, but can't get past the first part. Using XCode, I have code that compiles on a peecee, but can't find the required header files, nor any documentation on what are the right alternatives for this OS.
It's looking for
C:
#include <bluetooth/RFCOMM.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>
#include <bluetooth/sdp.h>
#include <bluetooth/sdp_lib.h>
#include <bluetooth/sco.h>
Which sequentially bombs out. I was able to get bluetooth.h to work using iobluetooth.h (at least the header file is there), but after looking in the include directories, have struck out on anything remotely like the files I am looking for. Not even out of the gate, and I can't even get the sample code to compile. Maybe I'm out of my pay grade, but I'm just trying to see if I can get the OS to even see any Bluetooth devices, and will build on that later.
Is there some documentation on Bluetooth that I can't find? Apple's own samples are horrible btw.
Thanks for any light shed on this issue.