mns.h 730 B

1234567891011121314151617181920212223
  1. /**
  2. *********************************************************************************************************
  3. * xmk guide
  4. *
  5. * (c) Copyright 2016-2020, hualijidian.com
  6. * All Rights Reserved
  7. *
  8. * @file mns.h
  9. * @author eric
  10. * @brief
  11. * @date 2017��7��22��
  12. * @version V0.0.1
  13. *********************************************************************************************************
  14. */
  15. #ifndef __MNS_H_
  16. #define __MNS_H_
  17. #include "stdint.h"
  18. #define GS_NONE 99999
  19. #define GS_ALL 88888
  20. int16_t MnsParseCanHs(uint8_t *data, uint8_t branch, uint8_t * find);
  21. #endif /* __MNS_H_ */