解決済! 解決策の投稿を見る。
Hello
How are you calling the function?
fp = &MCU_init; will only initialize fp with the address of function MCU_init.
To call the function you have to write
fp();
CrasyCat
Hello
How are you calling the function?
fp = &MCU_init; will only initialize fp with the address of function MCU_init.
To call the function you have to write
fp();
CrasyCat