realtek uart bluetooth 调试记录1 之uart 端口调用

文件:android4sam_v4.4/hardware/realtek/bt/libbt-vendor/include/vnd_sama5d4.txt
BLUETOOTH_UART_DEVICE_PORT = "/dev/ttyS1"

文件:android4sam_v4.4/hardware/realtek/bt/libbt-vendor/src/bt_vendor_rtk.c
static int init(const bt_vendor_callbacks_t* p_cb, unsigned char *local_bdaddr)
{
    ALOGI("init@dern");


    if (p_cb == NULL)
    {
        ALOGE("init failed with no user callbacks!");
        return -1;
    }


    userial_vendor_init();


    /* store reference to user callbacks */
    bt_vendor_cbacks = (bt_vendor_callbacks_t *) p_cb;


    /* This is handed over from the stack */
    memcpy(vnd_local_bd_addr, local_bdaddr, 6);


    return 0;
}


/*******************************************************************************
**
** Function        userial_vendor_init
**
** Description     Initialize userial vendor-specific control block
**
** Returns         None
**
*******************************************************************************/
void userial_vendor_init(void)
{
    vnd_userial.fd = -1;
    vnd_userial.dev_id = 0;
    snprintf(vnd_userial.port_name, VND_PORT_NAME_MAXLEN, "%s", \
            BLUETOOTH_UART_DEVICE_PORT);

    ALOGD("BLUETOOTH_UART_DEVICE_PORT=%s\n", BLUETOOTH_UART_DEVICE_PORT);
}



你可能感兴趣的:(Linux,driver解析)