I am using the FTM module of s32k144. How can I realize PWM output and PWM capture in different channels of the same FTM module? I haven't seen the relevant experience introduction and examples. Now I have to realize this function. I urgently need an example project. If anyone can provide it, I will be grateful.
Solved! Go to Solution.
Hi Anony,
The problem here is that the SDK driver ic and pwm were made independently, so they cannot coexist with the same FTM module. The GUI will note you: Peripheral is already used by the component...
The non-SDK FTM example (S32K144_project_FTM) that is available in the S32 Design Studio for ARM configures OC, IC and PWM channels on FTM0.
Best Regards,
Robin
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
Hi Anony,
The problem here is that the SDK driver ic and pwm were made independently, so they cannot coexist with the same FTM module. The GUI will note you: Peripheral is already used by the component...
The non-SDK FTM example (S32K144_project_FTM) that is available in the S32 Design Studio for ARM configures OC, IC and PWM channels on FTM0.
Best Regards,
Robin
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
Hi Robin,
Thank you very much!