STM32F7508-DK Communication with computer.
Dear All,
i'm try to working on this beautiful discovery kit. I was able to create a simple gui in touchGFX with some buttons and managing virtual functions to set a text variable to some letters string. I'm now trying to send these texts to my pc using cdc usb. I've search a lot and try all the suggestions find on the web but i'm still unable to receive on a serial monitor. CDC port is correctly recognized and come up easily in serial monitor or python scripts, i'm blocking around this simple code (lines are on the right places into whole code)
my text :
10 uint8_t *data = "Hello World from USB CDC\n";
my function:
100 CDC_Transmit_FS(data, strlen(data));
101 HAL_Delay (1000);
CubeIDE compile and download to my board with succes, on line 100 i got the warning: passing argument 1 of 'CDC_Transmit_FS' makes pointer from integer without a cast [-Wint-conversion] or another: pointer targets in passing argument 1 of 'CDC_Transmit_FS' differ in signedness [-Wpointer-sign] main.c /STM32F7508-DK/Application/User line 100
Can someone help finding the right ressources for this board? (or for code?). (video, document, demo using CDC,...)
I've precisely follow a lot of tutorials starting from right board config, up to all described steps.
I'm not C/C++ exerimented so sorry if the question is nothing.
Thank a lot , have a great day.
Giovanni.
