If I try to configure the interface from the CubeMX tool, it seems that it is possible to communicate only with flash memories.I have a lot of data that I need to transfer from a uC to another on the same PCB and a single SPI is too slow. Are there o...
Hi,I am not able to connect NUCLEO-L4P5ZG board to a PC and ST_LINK utility. It alway gives me "unexpected error". Detailed message follows:15:06:46 : ST-LINK SN : 066BFF343039564157205441
15:06:46 : ST-LINK Firmware version : V2J35M26
15:06:46 : Con...
For example if the original name is:void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init);the expected result should be:void MyPrefix_HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init);
Of course it dependes from the application, but for now I am talking about 3KBytes of data. Source uC acquires them continuosly every few milliseconds, it validates them and then transfer the whole block to destination uC. My concern is to tranfer th...
Hi Vangelis, thank you for sharing your code.I analyzed better the output code from CubeMX and I found that there are only few functions/variables that are really different from one configuration to another.My plan is to use a post-generation script ...
Hi Vangelis, thank you for your answer.Adding prefix at that level would be fine for me.Do you know if it possible to add custom prefix to function generated by CubeMX?For example if the original name is:void MX_GPIO_Init(void);the expected result sh...