123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #ifndef MT_SYS_H
- #define MT_SYS_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- typedef enum {
- STK_TX_PWR,
- STK_RX_ON_IDLE
- } STK_Tune_t;
- #if defined (MT_SYS_FUNC)
- extern uint8 MT_SysCommandProcessing(uint8 *pBuf);
- #endif
- extern void MT_SysResetInd( void );
- extern void MT_SysOsalTimerExpired(uint8 Id);
- #ifdef __cplusplus
- }
- #endif
- #endif
|