13 lines
174 B
C
13 lines
174 B
C
|
#ifndef _GENERATOR_H_
|
||
|
#define _GENERATOR_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void generatorInit();
|
||
|
void genShifter(uint16_t chipId, uint16_t frequencyCode);
|
||
|
|
||
|
|
||
|
|
||
|
#endif // _GENERATOR_H_
|