Problems with PWM3 & U0CTS GPIOs

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Problems with PWM3 & U0CTS GPIOs

722 Views
waynehawthorne
Contributor I

Hi, everyone....

 

I've been trying to do something that should be simple but isn't.

I'm trying to drive PWM3 and U0CTS as standard GPIOs on the 5329.

 

There are some difficiencies in the 5329 manual in the GPIO section that aren't helping.

 

I've been able to drive the PWM1 and LCD_CLS GPIOs, and even in doing this required a little guesswork & deduction on the register maps.

 

In table 13-1, the manual describes PWM3 GPIO as PPWM3, and the /U0CTS GPIO as PUARTL3.  The problem is, when you go to the register descriptions for the config registers (PODR, PDDR), there is no indication at which bits are specifically the ones that these GPIOs are assigned.  To drive PWM1 and LCD_CLS, I've made assumptions based on the PPDSDR_x registers which actually show the correct bits. (Ignoring that there's a typo in Figure 13-20...PPWM2 doesn't exist, and it should be PPWM1.)  I've used this code and modified it for PWM3 and /U0CTS by setting and find that this doesn't work.

 

Here's an example of what I've done for the PWM3 configuration (The /U0CTS config is similar, I'll only post PWM3 for brevity):

regPtr = _PSP_GET_IPSBAR();

regPtr->GPIO.PODR_PWM |= MCF5329_GPIO_PIN_3;

regPtr->GPIO.PDDR_PWM |= MCF5329_GPIO_PIN_3;

regPtr->GPIO.PAR_PWM &= ~MCF_GPIO_PAR_PWM_PAR_PWM3(0);

 

while (1)

{

     regPtr->GPIO.PPDSDR_PWM = MCF5329_GPIO_PIN_3;

     _time_delay( 500 );

     regPtr->GPIO.PCLRR_PWM = ~MCF5329_GPIO_PIN_3;

     _time_delay( 500 );    

 

}


So here are my questions:

1) As you can see, I've made the assumption that PWM3 is pin 3 in the PODR and PDDR, since the register maps in the manual (Tables 13-4 and 13-12) don't show the specific pins.  Is this a legit assumption?

2) Has anyone else had any issues with the configuration of /U0CTS or PWM3 as GPIO's?

 

Cheers & Thanks

Labels (1)
Tags (4)
0 Kudos
2 Replies

486 Views
Arev
Contributor III

Hello,

I think that your PAR register init is not good

regPtr->GPIO.PAR_PWM &= ~MCF_GPIO_PAR_PWM_PAR_PWM3(0);


MCF_GPIO_PAR_PWM_PAR_PWM3(0);   = 0x00

~MCF_GPIO_PAR_PWM_PAR_PWM3(0); = 0xFF

&= ~MCF_GPIO_PAR_PWM_PAR_PWM3(0); Does nothing

If you want to clear PAR_PWM3 to set GPIO functions, you'd better use

regPtr->GPIO.PAR_PWM &= ~MCF_GPIO_PAR_PWM_PAR_PWM3(3);

MCF_GPIO_PAR_PWM_PAR_PWM3(3);   = 0x0C

~MCF_GPIO_PAR_PWM_PAR_PWM3(3); = 0xF3

&= ~MCF_GPIO_PAR_PWM_PAR_PWM3(3); clears PAR_PWM3

I hope this helps

486 Views
waynehawthorne
Contributor I

Many thanks for the response.

It turns out that in addition to the noted documentation issues, there was a hardware issue on the board as well.

It does work as written, however I'll double check the code logic as per your suggestion.

Many thanks again.

0 Kudos