converter.h 480 B

123456789101112131415161718
  1. #ifndef __CONVERTER_H__
  2. #define __CONVERTER_H__
  3. #include "pando_types.h"
  4. /******************************************************************************
  5. * FunctionName : hex2bin.
  6. * Description : convert. string to bin.
  7. * Parameters : dst --
  8. * hex_str --
  9. * Returns : none.
  10. *******************************************************************************/
  11. void hex2bin(uint8_t * dst, char * hex_str);
  12. const char *u32_to_str(unsigned int val);
  13. #endif