// Program - Blinky
// Description - Blink LED
// Author - TL Fong
// Version - 0.511
// 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.51
// ***********************************************************************
void setPortPinDirection01(LPC_GPIO_TypeDef *gpio_struct_ptr, int pinNumber)
{
gpio_struct_ptr->DIR |= (1 << pinNumber);
}
// ***********************************************************************
// GPIO Functions (Set pin direction and value) v.042
// ***********************************************************************
void setPortPinDirection(int portNumber, int pinNumber)
{
LPC_GPIO_TypeDef *gpio_struct_ptr;
gpio_struct_ptr = LPC_GPIO1;
switch( portNumber )
{
case 1:
// The following 4 statements do the same thing.
// LPC_GPIO1->DIR |= (1 << pinNumber);
// (*LPC_GPIO1).DIR |= (1 << pinNumber);
// (*gpio_struct_ptr).DIR |= (1 << pinNumber);
// gpio_struct_ptr->DIR |= (1 << pinNumber);
gpio_struct_ptr->DIR |= (1 << pinNumber);
break;
case 2:
LPC_GPIO2->DIR |= (1 << pinNumber);
break;
default:
break;
}
}
void setPortPinValue(int portNumber, int pinNumber, int pinValue)
{
switch( portNumber )
{
case 1:
if (pinValue == 1)
LPC_GPIO1->DATA &= ~(1 << pinNumber);
else
LPC_GPIO1->DATA |= (1 << pinNumber);
break;
case 2:
;
break;
default:
break;
}
}
// ***********************************************************************
// LED Functions
// ***********************************************************************
void blinkLed(int ledNumber, int onTime, int offTime, int blinkCount)
{
int count;
switch( ledNumber )
{
case 1:
setPortPinDirection(1, 8);
for (count = 0; count < blinkCount; count--)
{
setPortPinValue(1, 8, 0);
delayTenthSecond(onTime);
setPortPinValue(1, 8, 1);
delayTenthSecond(offTime);
}
break;
case 2:
;
break;
default:
break;
}
}
// ***********************************************************************
// Main Function
// ***********************************************************************
int main()
{
setPortPinDirection01(LPC_GPIO1, 8);
blinkLed(1, 5, 10, 20); // Led 1, off 0.5 sec, on 1 sec, blink 20 times
}
// ****************************************************************************
// End of Program
// ****************************************************************************
No comments:
Post a Comment