• CODE for Call void function with parameter?
    void PWM_Config(uint8_t TIM_PERIOD, uint8_t TIM_PULSE) { . . . } int main() { PWM_Config(); // THIS LINE SHOWS AN ERROR . . . } ERROR LIST: main.c(251): error: #165: too few arguments in...
  • CODE for Call void function with parameter?
    void PWM_Config(uint8_t TIM_PERIOD, uint8_t TIM_PULSE) { . . . } int main() { PWM_Config(); // THIS LINE SHOWS AN ERROR . . . } ERROR LIST: main.c(251): error: #165: too few arguments in...
  • How to include inline assembly when I have many C-files in project?
    I have many C-files in the project. I would like to include inline assembly in some files so I do this step, - I include assembly code between "#pragma asm" and "#pragma endasm" - I include "#pragma...
  • How to include inline assembly when I have many C-files in project?
    I have many C-files in the project. I would like to include inline assembly in some files so I do this step, - I include assembly code between "#pragma asm" and "#pragma endasm" - I include "#pragma...
  • How can I call void function with parameters ?
    void PWM_Config(uint8_t TIM_PERIOD, uint8_t TIM_PULSE) { . . . } int main() { TIMConfig(); // THIS LINE SHOWS AN ERROR . . . } ERROR LIST: main.c(251): error: #165: too few arguments in function...