Skip to content
Snippets Groups Projects
Commit 3fbfd6a8 authored by dawehr's avatar dawehr
Browse files

wip: fix another uart issue

parent d0c7312a
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ int zybo_uart_reset(struct UARTDriver *self) {
struct ZyboUARTState *state = self->state;
if (state == NULL) return -1;
if (state->inst == NULL) return -1;
if (state->inst->CallBackRef == NULL) return -1;
if (state->queue == NULL) return -1;
XUartPs *inst = state->inst;
......
......@@ -48,7 +48,7 @@ int main()
#ifdef RUN_TESTS
//test_zybo_mio7_led_and_system();
//test_zybo_i2c();
test_zybo_i2c_imu();
//test_zybo_i2c_imu();
//test_zybo_i2c_px4flow();
//test_zybo_i2c_lidar();
//test_zybo_i2c_all();
......@@ -56,7 +56,7 @@ int main()
//test_zybo_motors();
//test_zybo_uart();
//test_zybo_axi_timer();
//test_zybo_uart_comm();
test_zybo_uart_comm();
return 0;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment