- disable usb vport

- uart drv for stm32f4
This commit is contained in:
tkl
2016-07-25 15:23:31 +02:00
parent f37cceafb8
commit 466f6fab86
12 changed files with 266 additions and 16 deletions

View File

@@ -22,7 +22,7 @@ int uart_open(const struct uart *this)
if(NULL == this)
return (-1);
int ret = this->fp->set_cb(this, uart_it_callback, this);
int ret = this->fp->set_cb(this->arch_dep_device, uart_it_callback, this);
ret |= this->fp->open(this->arch_dep_device);
return (ret);
}