How to generate PWM using PCA in MPC82G516A

(Company: nge s&c) #1839907
Rate this post
useful
not useful
Hi to all,

           Can any suggest me how to generate PWM using PCA in 
MPC52G516A microcontroller. I execute below program but i unable to get 
the output at port pin P1.3. I am attaching the MPC52G516A datasheet.

#include <reg_mpc82g516.h>
#include <stdio.h>


void main()
{
  CMOD = 0x00; // Setup PCA timer
  while (1)
  {
  CL = 0x00;
  CH = 0x00;

  CCAP1L = 0x40; // Set the initial value same as CCAP0H
  CCAP1H = 0x40; // 75% Duty Cycle

  CCAPM1 = 0x42; // Setup PCA module 0 in PWM mode.

  CR = 1; // Start PCA Timer.

  }
}


Thanks in advance
Attached files:

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now