Programa
principal
/**
###################################################################
** Filename : ProcessorExpert.c
** Project : ProcessorExpert
** Processor : MKL25Z128VLK4
** Version : Driver 01.01
** Compiler : GNU C Compiler
** Date/Time : 2013-03-19, 00:28, # CodeGen: 0
** Abstract :
** Main module.
** This module
contains user's application code.
** Settings :
** Contents :
** No public methods
**
**
###################################################################*/
/* MODULE ProcessorExpert */
/* Including needed modules to compile
this module/procedure */
#include "Cpu.h"
#include "Events.h"
#include "TU2.h"
#include "TI1.h"
#include "TimerIntLdd1.h"
#include "TU1.h"
#include "Bit1.h"
#include "BitIoLdd1.h"
/* Including shared modules, which are
used for whole project */
#include "PE_Types.h"
#include "PE_Error.h"
#include "PE_Const.h"
#include "IO_Map.h"
/* User includes (#include below this
line is not maintained by Processor Expert) */
//DEFINICION DE NOTAS Y FRECUENCIAS EN
LA TERCER ESCALA
#define DO 327//261.626
#define RE 208//393.665
#define MI 248//329.628
#define FA 221//369.994
#define SOL
209//391.995
#define LA 186//440
#define SI 166//493.883
unsigned int
cuca[]={RE,RE,RE,SOL,SI,RE,RE,RE,SOL,SI,SOL,SOL,FA,FA,MI,MI,RE,RE,RE,FA,LA,RE,RE,FA,LA,RE,MI,RE,DO,SI,LA,SOL,NULL};
unsigned int *ap_cuca;
/*lint -save -e970 Disable MISRA rule (6.3) checking. */
int main(void)
/*lint -restore Enable MISRA rule (6.3)
checking. */
{
/* Write
your local variable definition here */
/***
Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/
PE_low_level_init();
/*** End
of Processor Expert internal initialization.
***/
/* Write
your code here */
ap_cuca= &cuca[0];
/* For
example: */
for(;;) { }
/*** Don't
write any code pass this line, or it will be deleted during code generation.
***/
/*** RTOS
startup code. Macro PEX_RTOS_START is defined by the RTOS component. DON'T
MODIFY THIS CODE!!! ***/
#ifdef PEX_RTOS_START
PEX_RTOS_START();
/* Startup
of the selected RTOS. Macro is defined by the RTOS component. */
#endif
/*** End
of RTOS startup code. ***/
/***
Processor Expert end of main routine. DON'T MODIFY THIS CODE!!! ***/
for(;;){}
/***
Processor Expert end of main routine. DON'T WRITE CODE BELOW!!! ***/
} /*** End of main routine. DO NOT MODIFY
THIS TEXT!!! ***/
/* END ProcessorExpert */
/*
**
###################################################################
**
** This file was created by Processor Expert
10.0 [05.03]
** for the Freescale Kinetis series
of microcontrollers.
**
**
###################################################################
*/
Eventos
/**
###################################################################
** Filename : Events.c
** Project : ProcessorExpert
** Processor : MKL25Z128VLK4
** Component : Events
** Version : Driver 01.00
** Compiler : GNU C Compiler
** Date/Time : 2013-03-19, 00:28, # CodeGen: 0
** Abstract :
** This is user's
event module.
** Put your event handler code here.
** Settings :
** Contents :
** Cpu_OnNMIINT -
void Cpu_OnNMIINT(void);
**
**
###################################################################*/
/* MODULE Events */
#include "Cpu.h"
#include "Events.h"
/* User includes (#include below this
line is not maintained by Processor Expert) */
extern unsigned int cuca[];
extern unsigned int *ap_cuca;
/*
**
===================================================================
** Event : Cpu_OnNMIINT (module Events)
**
** Component : Cpu
[MKL25Z128LK4]
** Description :
** This event is
called when the Non maskable interrupt had
** occurred. This
event is automatically enabled when the <NMI
** interrrupt>
property is set to 'Enabled'.
** Parameters : None
** Returns : Nothing
**
===================================================================
*/
void Cpu_OnNMIINT(void)
{
/* Write
your code here ... */
}
/*
** ===================================================================
** Event : TU2_OnCounterRestart (module Events)
**
** Component : TU2
[TimerUnit_LDD]
** Description :
** Called if counter
overflow/underflow or counter is
** reinitialized
by modulo or compare register matching.
** OnCounterRestart
event and Timer unit must be enabled. See
**
<SetEventMask> and <GetEventMask> methods. This event is
** available only if
a <Interrupt> is enabled.
** Parameters :
** NAME
- DESCRIPTION
** * UserDataPtr - Pointer to the user
or
**
RTOS specific data. The pointer passed as
**
the parameter of Init method.
** Returns : Nothing
** ===================================================================
*/
/*
**
===================================================================
** Event : TI1_OnInterrupt (module Events)
**
** Component : TI1
[TimerInt]
** Description :
** When a timer interrupt occurs this event is
called (only
** when the component
is enabled - <Enable> and the events are
** enabled -
<EnableEvent>). This event is enabled only if a
** <interrupt
service/event> is enabled.
** Parameters :
None
** Returns : Nothing
**
===================================================================
*/
void TI1_OnInterrupt(void)
{
TU2_SetPeriodTicks(TU2_DeviceData,
*ap_cuca);
if (*ap_cuca
== NULL)
{
ap_cuca= &cuca[0];
}
ap_cuca++;
/* Write your code here ... */
}
/*
**
===================================================================
** Event : TU2_OnCounterRestart (module Events)
**
** Component : TU2
[TimerUnit_LDD]
** Description :
** Called if counter
overflow/underflow or counter is
** reinitialized
by modulo or compare register matching.
** OnCounterRestart
event and Timer unit must be enabled. See
**
<SetEventMask> and <GetEventMask> methods. This event is
** available only if
a <Interrupt> is enabled.
** Parameters :
** NAME
- DESCRIPTION
** * UserDataPtr - Pointer to the user
or
**
RTOS specific data. The pointer passed as
**
the
parameter of Init method.
** Returns : Nothing
**
===================================================================
*/
void TU2_OnCounterRestart(LDD_TUserData *UserDataPtr)
{
Bit1_NegVal();
}
/* END Events */
/*
** ###################################################################
**
** This file was created by Processor Expert
10.0 [05.03]
** for the Freescale Kinetis
series of microcontrollers.
**
**
###################################################################
*/
No hay comentarios:
Publicar un comentario