which file starts STM32
I do have this demo program in which main.c is disabled so it would start from main_pinpong.c which is the only file with
int main( void )
{
included in target build
startup_stm32l476xx.s is supposed to be the startup file but I do not see any reference to
main.c or main_pinpong.c
I see that main.c is not included in target build but main_pinpong.c is included
so they question is what points the compiler to execute int main( void ) from main_pinpong.c

