led example with 2 timers

Dependencies:   mbed mbed-rtos

modulator.cpp

Committer:
passelin
Date:
2014-02-10
Revision:
1:6e31c704f4d6
Child:
2:124a066878cc

File content as of revision 1:6e31c704f4d6:

#include "main.h"

extern Serial pc;
DigitalOut myled(LED1);
volatile unsigned short timer_count;

void Modulator_init(void)
{
    myled = 0;
    
    LPC_SC->PCONP |=1<1;            //timer0 power on
    LPC_TIM0->MR0 = 2398000;        //100 msec
    LPC_TIM0->MCR = 3;              //interrupt and reset control
                                    //3 = Interrupt & reset timer0 on match
                                    //1 = Interrupt only, no reset of timer0
    NVIC_EnableIRQ(TIMER0_IRQn);    //enable timer0 interrupt
    LPC_TIM0->TCR = 1;              //enable Timer0
    pc.printf("Done timer0_init\n\r");
}

extern "C" void TIMER0_IRQHandler (void)
{
if((LPC_TIM0->IR & 0x01) == 0x01)   // if MR0 interrupt, proceed
    {
    LPC_TIM0->IR |= 1 << 0;         // Clear MR0 interrupt flag
    timer_count++;                  //increment timer_count
   
    // pc.printf("timer_count %d \n\r", timer_count);
    if (timer_count >= 80)      //Set timer_count for about 8 seconds
            {
            if (myled == 1)             //If LED off, turn it on &
                {
                myled = 0;
                timer_count = 0;        //reset count
                }
            else
                {
                myled = 1;              //If LED on, turn it off &
                timer_count = 0;        //reset count
                }
            }
    }
}

void Modulator_thread(void const *args)
{
    Modulator_init();
    
    while(1)
    {
    // wait forever...        
    }
}