How to build a library using Keil for the project using Cube
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 (...