X-Git-Url: https://rtime.felk.cvut.cz/gitweb/mirosot.git/blobdiff_plain/86608e251db3b85b5d9cec1d487261b11325edbe..ba111b946b45f8493ad0e2b10430c296f2f08cb8:/bluetooth/hci_bluez.c diff --git a/bluetooth/hci_bluez.c b/bluetooth/hci_bluez.c new file mode 100644 index 0000000..e856c1c --- /dev/null +++ b/bluetooth/hci_bluez.c @@ -0,0 +1,21 @@ +#include "hci.h" +#include +int hci_socket; +/** + //FIXME + *Sends data of the size hp_size from address hp to the bluetooth device (UART) + */ +int bth_send_packet(uint8_t *hp, uint16_t hp_size) +{ + /*is bluetooth device free, or is it busy by the previous command?*/ + if(bth_local_info.busy==0) { + + write(hci_socket, hp, hp_size); + + bth_local_info.busy=1; + return(0); //everything sent ==== OK ===== + } else { + return 2; //busy + }; +}; +