User Activity

Let's say I want this function to be within my library:// library function float mili ( unsigned x) { return x/1000.0 }   // main function int main (void) { float volatile tt; unsigned t;   for (;;) { t = HAL_GetTick(); while (...
I have a Keil MDK project which outputs a library mc_comms.lib. I have another Keil project which uses this library and there are any issues. My customer is using STM Cube and can't build the same test project with the same library. Here are the erro...