mirror of
https://github.com/isfshax/isfshax.git
synced 2024-11-08 20:55:09 +01:00
20 lines
304 B
C
20 lines
304 B
C
|
#ifndef __LOLSERIAL_H__
|
||
|
#define __LOLSERIAL_H__
|
||
|
|
||
|
#ifdef LOLSERIAL_DEBUG
|
||
|
|
||
|
void lolserial_init();
|
||
|
void lolserial_suspend(void);
|
||
|
void lolserial_resume(void);
|
||
|
|
||
|
#else
|
||
|
|
||
|
#define lolserial_init()
|
||
|
#define lolserial_suspend()
|
||
|
#define lolserial_resume()
|
||
|
|
||
|
#endif /* LOLSERIAL_DEBUG */
|
||
|
|
||
|
#endif /* __LOLSERIAL_H__ */
|
||
|
|