2009-07-18 20:45:06 +00:00
|
|
|
/*
|
|
|
|
* test.c
|
2009-07-24 21:38:33 +00:00
|
|
|
*
|
2009-07-18 20:45:06 +00:00
|
|
|
* Created by Matthias Ringwald on 7/14/09.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <strings.h>
|
|
|
|
|
|
|
|
#include "../src/btstack.h"
|
|
|
|
#include "../src/run_loop.h"
|
|
|
|
#include "../src/hci.h"
|
|
|
|
|
2009-07-29 21:49:53 +00:00
|
|
|
// bd_addr_t addr = {0x00, 0x03, 0xc9, 0x3d, 0x77, 0x43 }; // Think Outside Keyboard
|
|
|
|
bd_addr_t addr = {0x00, 0x19, 0x1d, 0x90, 0x44, 0x68 }; // WiiMote
|
2009-07-18 20:45:06 +00:00
|
|
|
|
2009-07-31 21:41:15 +00:00
|
|
|
void data_handler(uint8_t *packet, uint16_t size){
|
2009-07-29 21:13:42 +00:00
|
|
|
// just dump data for now
|
2009-07-29 21:06:04 +00:00
|
|
|
hexdump( packet, size );
|
|
|
|
}
|
2009-07-18 20:45:06 +00:00
|
|
|
|
2009-07-29 21:06:04 +00:00
|
|
|
void event_handler(uint8_t *packet, uint16_t size){
|
2009-07-29 21:13:42 +00:00
|
|
|
// bt stack activated, get started - set local name
|
2009-07-24 21:37:45 +00:00
|
|
|
if (packet[0] == HCI_EVENT_BTSTACK_WORKING ||
|
|
|
|
(packet[0] == HCI_EVENT_BTSTACK_STATE && packet[2] == HCI_STATE_WORKING)) {
|
2009-07-29 21:06:04 +00:00
|
|
|
bt_send_cmd(&hci_write_local_name, "BTstack-Test");
|
2009-07-18 20:45:06 +00:00
|
|
|
}
|
|
|
|
|
2009-07-30 20:14:54 +00:00
|
|
|
// use pairing yes/no
|
2009-07-18 20:45:06 +00:00
|
|
|
if ( COMMAND_COMPLETE_EVENT(packet, hci_write_local_name) ) {
|
2009-07-29 21:49:53 +00:00
|
|
|
bt_send_cmd(&hci_write_authentication_enable, 0);
|
2009-07-18 20:45:06 +00:00
|
|
|
}
|
2009-07-29 21:06:04 +00:00
|
|
|
|
2009-07-29 21:13:42 +00:00
|
|
|
// connect to HID device (PSM 0x13) at addr
|
2009-07-18 20:45:06 +00:00
|
|
|
if ( COMMAND_COMPLETE_EVENT(packet, hci_write_authentication_enable) ) {
|
2009-07-31 21:41:15 +00:00
|
|
|
bt_send_cmd(&l2cap_create_channel, addr, 0x13);
|
2009-07-29 21:13:42 +00:00
|
|
|
}
|
|
|
|
|
2009-07-29 21:06:04 +00:00
|
|
|
|
|
|
|
// inform about pin code request
|
|
|
|
if (packet[0] == HCI_EVENT_PIN_CODE_REQUEST){
|
|
|
|
printf("Please enter PIN 1234 on remote device\n");
|
|
|
|
}
|
|
|
|
|
2009-07-29 21:13:42 +00:00
|
|
|
// inform about new l2cap connection
|
2009-07-29 21:06:04 +00:00
|
|
|
if (packet[0] == HCI_EVENT_L2CAP_CHANNEL_OPENED){
|
2009-08-02 13:20:32 +00:00
|
|
|
bd_addr_t addr;
|
|
|
|
bt_flip_addr(addr, &packet[2]);
|
|
|
|
uint16_t psm = READ_BT_16(packet, 10);
|
2009-08-02 13:32:55 +00:00
|
|
|
uint16_t source_cid = READ_BT_16(packet, 12);
|
2009-08-02 13:20:32 +00:00
|
|
|
printf("Channel successfully opened: ");
|
|
|
|
print_bd_addr(addr);
|
|
|
|
printf(", handle 0x%02x, psm 0x%02x, source cid 0x%02x, dest cid 0x%02x\n",
|
|
|
|
READ_BT_16(packet, 8), psm, source_cid, READ_BT_16(packet, 14));
|
2009-07-31 21:41:15 +00:00
|
|
|
|
2009-08-02 13:20:32 +00:00
|
|
|
if (psm == 0x13) {
|
|
|
|
// interupt channel openedn succesfully, now open control channel, too.
|
|
|
|
bt_send_cmd(&l2cap_create_channel, addr, 0x11);
|
|
|
|
} else {
|
|
|
|
// request acceleration data.. probably has to be sent to control channel 0x11 instead of 0x13
|
|
|
|
uint8_t setMode33[] = { 0x52, 0x12, 0x00, 0x33 };
|
|
|
|
l2cap_send( source_cid, setMode33, sizeof(setMode33));
|
|
|
|
}
|
2009-07-29 21:06:04 +00:00
|
|
|
}
|
2009-07-18 20:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main (int argc, const char * argv[]){
|
|
|
|
bt_open();
|
|
|
|
bt_register_event_packet_handler(event_handler);
|
2009-07-31 21:41:15 +00:00
|
|
|
bt_register_data_packet_handler(data_handler);
|
|
|
|
bt_send_cmd(&btstack_set_power_mode, HCI_POWER_ON );
|
2009-07-18 20:45:06 +00:00
|
|
|
run_loop_execute();
|
|
|
|
bt_close();
|
|
|
|
}
|