btstack/src/hci_transport_h4.c

190 lines
4.9 KiB
C
Raw Normal View History

2009-04-29 22:00:24 +00:00
/*
* hci_h4_transport.c
*
* Created by Matthias Ringwald on 4/29/09.
*
*/
#include <termios.h> /* POSIX terminal control definitions */
#include <fcntl.h> /* File control definitions */
#include <unistd.h> /* UNIX standard function definitions */
#include <stdio.h>
2009-04-29 22:00:24 +00:00
2009-05-03 21:28:40 +00:00
#include "hci_transport_h4.h"
2009-04-29 22:00:24 +00:00
typedef enum {
H4_W4_PACKET_TYPE,
H4_W4_EVENT_HEADER,
H4_W4_EVENT_PAYLOAD,
H4_W4_ACL_HEADER,
H4_W4_ACL_PAYLOAD
} H4_STATE;
static void dummy_handler(uint8_t *packet, int size);
// typedef struct {
// static hci_uart_config_t *config;
static int fd;
static void (*event_packet_handler)(uint8_t *packet, int size) = dummy_handler;
static void (*acl_packet_handler)(uint8_t *packet, int size) = dummy_handler;
static H4_STATE h4_state;
static int bytes_to_read;
static int read_pos;
static uint8_t hci_event_buffer[255+2]; // maximal payload + 2 bytes header
// } hci_h4_transport_private;
2009-04-29 22:00:24 +00:00
// prototypes
static int h4_open(void *transport_config){
hci_uart_config_t * uart_config = (hci_uart_config_t*) transport_config;
struct termios toptions;
fd = open(uart_config->device_name, O_RDWR | O_NOCTTY | O_NDELAY);
if (fd == -1) {
perror("init_serialport: Unable to open port ");
return -1;
}
if (tcgetattr(fd, &toptions) < 0) {
perror("init_serialport: Couldn't get term attributes");
return -1;
}
speed_t brate = uart_config->baudrate; // let you override switch below if needed
switch(uart_config->baudrate) {
case 57600: brate=B57600; break;
case 115200: brate=B115200; break;
}
cfsetispeed(&toptions, brate);
cfsetospeed(&toptions, brate);
// 8N1
toptions.c_cflag &= ~PARENB;
toptions.c_cflag &= ~CSTOPB;
toptions.c_cflag &= ~CSIZE;
toptions.c_cflag |= CS8;
if (uart_config->flowcontrol) {
// with flow control
toptions.c_cflag |= CRTSCTS;
} else {
// no flow control
toptions.c_cflag &= ~CRTSCTS;
}
toptions.c_cflag |= CREAD | CLOCAL; // turn on READ & ignore ctrl lines
toptions.c_iflag &= ~(IXON | IXOFF | IXANY); // turn off s/w flow ctrl
toptions.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); // make raw
toptions.c_oflag &= ~OPOST; // make raw
// see: http://unixwiz.net/techtips/termios-vmin-vtime.html
toptions.c_cc[VMIN] = 1;
toptions.c_cc[VTIME] = 0;
if( tcsetattr(fd, TCSANOW, &toptions) < 0) {
perror("init_serialport: Couldn't set term attributes");
return -1;
}
// init state machine
bytes_to_read = 1;
h4_state = H4_W4_PACKET_TYPE;
read_pos = 0;
2009-04-29 22:00:24 +00:00
return 0;
}
static int h4_close(){
2009-04-29 22:00:24 +00:00
return 0;
}
static int h4_send_cmd_packet(uint8_t *packet, int size){
char *data = (char*) packet;
char cmd_type = 1;
write(fd, &cmd_type, 1);
while (size > 0) {
int bytes_written = write(fd, data, size);
if (bytes_written < 0) {
return bytes_written;
}
data += bytes_written;
size -= bytes_written;
}
2009-04-29 22:00:24 +00:00
return 0;
}
static int h4_send_acl_packet(uint8_t *packet, int size){
2009-04-29 22:00:24 +00:00
return 0;
}
static void h4_register_event_packet_handler(void (*handler)(uint8_t *packet, int size)){
event_packet_handler = handler;
2009-04-29 22:00:24 +00:00
}
2009-05-03 21:28:40 +00:00
static void h4_register_acl_packet_handler (void (*handler)(uint8_t *packet, int size)){
acl_packet_handler = handler;
2009-04-29 22:00:24 +00:00
}
static int h4_get_fd() {
return fd;
2009-04-29 22:00:24 +00:00
}
static int h4_handle_data() {
// read up to bytes_to_read data in
int bytes_read = read(fd, &hci_event_buffer[read_pos], bytes_to_read);
if (bytes_read < 0) {
return bytes_read;
}
// printf("Bytes read: %u\n", bytes_read);
bytes_to_read -= bytes_read;
read_pos += bytes_read;
if (bytes_to_read > 0) {
return 0;
}
// act
switch (h4_state) {
case H4_W4_PACKET_TYPE:
if (hci_event_buffer[0] == 4){
read_pos = 0;
bytes_to_read = 2;
h4_state = H4_W4_EVENT_HEADER;
}
break;
case H4_W4_EVENT_HEADER:
bytes_to_read = hci_event_buffer[1];
h4_state = H4_W4_EVENT_PAYLOAD;
break;
case H4_W4_EVENT_PAYLOAD:
event_packet_handler(hci_event_buffer, read_pos);
h4_state = H4_W4_PACKET_TYPE;
read_pos = 0;
bytes_to_read = 1;
break;
case H4_W4_ACL_HEADER:
break;
case H4_W4_ACL_PAYLOAD:
break;
}
2009-04-29 22:00:24 +00:00
return 0;
}
static const char * h4_get_transport_name(){
2009-04-29 22:00:24 +00:00
return "H4";
}
static void dummy_handler(uint8_t *packet, int size){
}
2009-04-29 22:00:24 +00:00
// single instance
hci_transport_t hci_h4_transport = {
h4_open,
h4_close,
h4_send_cmd_packet,
h4_send_acl_packet,
h4_register_event_packet_handler,
h4_register_acl_packet_handler,
h4_get_fd,
h4_handle_data,
h4_get_transport_name
2009-04-29 22:00:24 +00:00
};