Initial commit: my SECS2 project

This commit is contained in:
2026-06-12 14:19:01 +08:00
commit 2c3e2c4dc2
1138 changed files with 603966 additions and 0 deletions

18
usr/app/laser.h Normal file
View File

@@ -0,0 +1,18 @@
#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