1234567891011121314151617181920212223 |
- /**
- *********************************************************************************************************
- * xmk guide
- *
- * (c) Copyright 2016-2020, hualijidian.com
- * All Rights Reserved
- *
- * @file mns.h
- * @author eric
- * @brief
- * @date 2017��7��22��
- * @version V0.0.1
- *********************************************************************************************************
- */
- #ifndef __MNS_H_
- #define __MNS_H_
- #include "stdint.h"
- #define GS_NONE 99999
- #define GS_ALL 88888
- int16_t MnsParseCanHs(uint8_t *data, uint8_t branch, uint8_t * find);
- #endif /* __MNS_H_ */
|