User Activity

Hi,I have written application using visual studio C#. And I send commands through the COM port from my Visual Studio application to my STM32 board. There is a bit of strangeness, when I run the live debugger using STlink V2 with STM32CubeIDE I can se...
I have a written C# windows application that receive data continuously from MCP2221A. MCP2221A receive data from STM32 UART through receive data line. When the laptop goes for sleep (in battery mode), it send a suspend signal (it will go low) to the ...
hi,I initialized string array with strings and type cast to uint32_t to store in flash memory as uint32_t. And then read the array as uint32_t. I update one of the string of the  array and type cast uint32_t to store that array in Flash memory back. ...
Hi,I wanted to send hexadecimal numbers through UART. I am using STM32F405. Can it be done.If I am sending float number as 1.3456 string (text) to windows COM port to  english language windows application field. If for example regional settings being...
Hi, I am having problem with string copy strncpy(). I am getting error message "Cannot access memory at address 0x31203a6e" static char *DataBuffer[30] = {0}; for(char *str =strtok((char*)recdata, "\n\n"); str; str = strtok(NULL, "\n\n")) { strncp...