You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
I have an XSens MTi-G-710 device in my hand, and I use a NUCLEO-F429ZI board.
I basically want to connect the Xsens device to STM32 via USB Connection, and want to set the stm as host device. The Xsens device communicates with ACM, so I want to be able to receive & send serial connection bytes through USB, just like I do with a PC on /dev/ttyACM0.
I have no clue where to start, because no example is based on stm32duino but I need to use stm32duino.
How can I implement such structure ?
I've tried the following:
Hi there,
I have an XSens MTi-G-710 device in my hand, and I use a NUCLEO-F429ZI board.
I basically want to connect the Xsens device to STM32 via USB Connection, and want to set the stm as host device. The Xsens device communicates with ACM, so I want to be able to receive & send serial connection bytes through USB, just like I do with a PC on /dev/ttyACM0.
I have no clue where to start, because no example is based on stm32duino but I need to use stm32duino.
How can I implement such structure ?
I've tried the following:
And my folder structure looks like this:
├── include
│ └── README
├── lib
│ ├── README
│ └── XSensUSBDriver
│ | ├── usbh_lib
│ | │ ├── usb_conf.c
│ | │ ├── usbh_cdc.c
│ | │ ├── usbh_cdc.h
│ | │ ├── usbh_conf.h
│ | │ ├── usbh_conf_template.c
│ | │ ├── usbh_conf_template.h
│ | │ ├── usbh_core.c
│ | │ ├── usbh_core.h
│ | │ ├── usbh_ctlreq.c
│ | │ ├── usbh_ctlreq.h
│ | │ ├── usbh_def.h
│ | │ ├── usbh_ioreq.c
│ | │ ├── usbh_ioreq.h
│ | │ ├── usbh_pipes.c
│ | │ └── usbh_pipes.h
│ | ├── XSensUSBDriver.cpp
│ | └── XSensUSBDriver.h
├── platformio.ini
├── src
│ └── main.cpp
└── test
└── README
Any help would be appriciated.
Sorry for my english though
And also I've checked #687 , are there any estimations when the USB Host library will be supported on stm32duino core ?
The text was updated successfully, but these errors were encountered: