mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-06-18 16:45:33 -04:00
17 lines
202 B
C
17 lines
202 B
C
#ifndef _util_funcs_h_
|
|
#define _util_funcs_h_
|
|
|
|
|
|
void wait_ms( u8 );
|
|
|
|
|
|
# ifdef _DI_WITH_CHECK_
|
|
void DI_wt_chk();
|
|
# else
|
|
# define DI_wt_chk() DI()
|
|
# endif /* _DI_WITH_CHECK_ */
|
|
|
|
|
|
#endif
|
|
|