19 lines
246 B
C
19 lines
246 B
C
#ifndef _LASER_H_
|
|
#define _LASER_H_
|
|
|
|
#include "main.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
u8 SampleCompleteFlag;
|
|
u32 *pWaveSample;
|
|
void (*Init)(void);
|
|
void (*WaveIO_Int)(void);
|
|
void (*Task)(void);
|
|
|
|
}Laser_t;
|
|
|
|
extern Laser_t Laser;
|
|
#endif
|