On the FRDM-KL25Z, when I declare pins PTA5 and PTD2 as PwmOut pins, they are locked together and can not be independently controlled. It doesn't matter if I change the PWM of PTA5 or PTD2. Whichever one is changed, the other one follows it. The simple code below should keep pin PTD2 at 0% pwm while pin PTA5 should switch between 50% and 0% every 0.5 seconds. Pin PTA5 does alternate between 50% and 0% pwm, but instead of staying at 0% pwm, pin PTD2 follows pin PTA5.

Dependencies:   mbed

Fork of frdm_rgbled by Freescale

main.cpp

Committer:
sam_grove
Date:
2014-07-16
Revision:
7:ad8295723268
Parent:
5:14891bb08b35
Child:
8:47c89e2ae2e6

File content as of revision 7:ad8295723268:

#include "mbed.h"

PwmOut r(LED_RED);
PwmOut g(LED_GREEN);

int main()
{
    r.period(0.001f);
    g.period(0.001f);

    while (true) {
        for (float i = 0.0f; i < 1.0f ; i += 0.001f) {
            float p = 3 * i;
            r = 1.0f - ((p < 1.0f) ? 1.0f - p : (p > 2.0f) ? p - 2.0f : 0.0f);
            g = 1.0f - ((p < 1.0f) ? p : (p > 2.0f) ? 0.0f : 2.0f - p);
            wait (0.0025f);
        }
    }
}