blinky 0512 notes

// ****************************************************************************
// Program - Blinky
// Description - Blink LED
// Author - TL Fong
// Version - 0.512
// Date - 2013jul15hkt2150
// Hardware - Somy ARM Cortex M0 LPC1114/301 Learning Board
// Software - Keil uVision 4.71.2.0 ARM CC
// Method - Incremental testing
// Somy Configuration -
//   LED1 - P1.8
// Function structure
//   main()
//     blinky()
//       setPortPinOutput()
//       setPortPinLow()
//       setPortPinHigh()
//       delayTenthSecond()
// ****************************************************************************

#include <stdio.h>
#include "lpc11xx.h"

// ***********************************************************************
// Global constants and variables
// ***********************************************************************

typedef const int logicLevel;
logicLevel LogicLevelLow = 0;
logicLevel LogicLevelHigh = 1;

typedef const int portNumber;
portNumber Port0 = 0;
portNumber Port1 = 1;
portNumber Port2 = 2;
portNumber Port3 = 3;
portNumber Port4 = 4;
portNumber Port5 = 5;
portNumber Port6 = 6;
portNumber Port7 = 7;

typedef const int pinNumber;
pinNumber Pin0 = 0;
pinNumber Pin1 = 1;
pinNumber Pin2 = 2;
pinNumber Pin3 = 3;
pinNumber Pin4 = 4;
pinNumber Pin5 = 5;
pinNumber Pin6 = 6;
pinNumber Pin7 = 7;
pinNumber Pin8 = 8;
pinNumber Pin9 = 9;
pinNumber Pin10 = 10;
pinNumber Pin11 = 11;

typedef int ledNumber;
ledNumber Led0 = 0;
ledNumber Led1 = 1;

typedef int tenthSecond;
tenthSecond HalfSecond = 5;
tenthSecond OneSecond = 10;

typedef int repeatCount;
repeatCount FourTimes = 4;
repeatCount TwentyTimes = 20;

typedef int ledPortPinArrayArray[4][2];
ledPortPinArrayArray Lppaa = {{Port1, Pin8},{Port1, Pin8}, {Port1, Pin8}, {Port1, Pin8}};

// ***********************************************************************
// Timer Functions
// ***********************************************************************

void delayTenthSecond(int count)
  {
int i, j, k;
for (i = 0; i < count; i++)
    {
for (j = 0; j < 0x4; j++)
 {
        for (k = 0; k < 0x000BB00; k++)
          {
       }
}
     }
}

// ***********************************************************************
// GPIO Functions (GPIO control structure, port, pin)
// ***********************************************************************

portNumber getLedPortNumber(ledNumber ledNumber, ledPortPinArrayArray lppaa)
{
  int portNumber;
  portNumber = lppaa [ledNumber][0];
  return portNumber;
}

pinNumber getLedPinNumber(ledNumber ledNumber, ledPortPinArrayArray lppaa)
{
  int ledPinNumber;
  ledPinNumber = lppaa [ledNumber][1];
  return ledPinNumber;
}

LPC_GPIO_TypeDef *getGpioStructPointer(int gpioPortNumber)
{
  LPC_GPIO_TypeDef *gpioStructPointer;

  switch(gpioPortNumber)
    {
    case 0:
      gpioStructPointer = LPC_GPIO0;
break;
    case 1:
      gpioStructPointer = LPC_GPIO1;
break;  
default:
 break;
 }
return gpioStructPointer;
}


// ***********************************************************************
// GPIO Functions (Set pin direction and value) v0.511
// ***********************************************************************

void setPortPinDirection0511(LPC_GPIO_TypeDef *gpio_struct_ptr, int pinNumber)
  {
  gpio_struct_ptr->DIR |= (1 << pinNumber);
  }

// ***********************************************************************
// GPIO Functions (Set pin direction and value) v.0420
// ***********************************************************************

void setPortPinValue0420(int portNumber, int pinNumber, int pinValue)
{
  if (pinValue == 1)
 LPC_GPIO1->DATA &= ~(1 << pinNumber);      
else
 LPC_GPIO1->DATA |= (1 << pinNumber);
}

// ***********************************************************************
// LED Functions
// ***********************************************************************

void blinky0420(int ledNumber, int onTime, int offTime, int blinkCount)
{
  int count;

setPortPinDirection0511(LPC_GPIO1, 8);

for (count = 0; count < blinkCount; count--)
{
  setPortPinValue0420(1, 8, 0);
     delayTenthSecond(onTime);  
setPortPinValue0420(1, 8, 1);
     delayTenthSecond(offTime);
  }
}

// ***********************************************************************
// Test Functions
// ***********************************************************************

//void testBlinky()
//{
//  blinky(Port0, Pin8, HalfSecond, OneSecond, TwentyTimes);
//}

//void testBlinky01()
//{
//  blinky(Led0, Pin8, HalfSecond, OneSecond, FourTimes);
//}

// ***********************************************************************
// Main Function
// ***********************************************************************

//int main()
//{
//  testBlinky();
//  //testBlinky01();
//}

int main()
{
  setPortPinDirection0511(LPC_GPIO1, 8);
blinky0420(1, 5, 10, 20); // Led 1, off 0.5 sec, on 1 sec, blink 20 times

}

// ****************************************************************************
// End of Program
// ****************************************************************************

No comments:

Post a Comment