hex.cmake 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # SPDX-License-Identifier: Apache-2.0
  2. # from https://gist.github.com/korzo89/71a6de0f388f7cf8b349101b0134060c
  3. function(from_hex HEX DEC)
  4. string(SUBSTRING "${HEX}" 2 -1 HEX)
  5. string(TOUPPER "${HEX}" HEX)
  6. set(_res 0)
  7. string(LENGTH "${HEX}" _strlen)
  8. while(_strlen GREATER 0)
  9. math(EXPR _res "${_res} * 16")
  10. string(SUBSTRING "${HEX}" 0 1 NIBBLE)
  11. string(SUBSTRING "${HEX}" 1 -1 HEX)
  12. if(NIBBLE STREQUAL "A")
  13. math(EXPR _res "${_res} + 10")
  14. elseif(NIBBLE STREQUAL "B")
  15. math(EXPR _res "${_res} + 11")
  16. elseif(NIBBLE STREQUAL "C")
  17. math(EXPR _res "${_res} + 12")
  18. elseif(NIBBLE STREQUAL "D")
  19. math(EXPR _res "${_res} + 13")
  20. elseif(NIBBLE STREQUAL "E")
  21. math(EXPR _res "${_res} + 14")
  22. elseif(NIBBLE STREQUAL "F")
  23. math(EXPR _res "${_res} + 15")
  24. else()
  25. math(EXPR _res "${_res} + ${NIBBLE}")
  26. endif()
  27. string(LENGTH "${HEX}" _strlen)
  28. endwhile()
  29. set(${DEC} ${_res} PARENT_SCOPE)
  30. endfunction()
  31. function(to_hex DEC HEX)
  32. while(DEC GREATER 0)
  33. math(EXPR _val "${DEC} % 16")
  34. math(EXPR DEC "${DEC} / 16")
  35. if(_val EQUAL 10)
  36. set(_val "A")
  37. elseif(_val EQUAL 11)
  38. set(_val "B")
  39. elseif(_val EQUAL 12)
  40. set(_val "C")
  41. elseif(_val EQUAL 13)
  42. set(_val "D")
  43. elseif(_val EQUAL 14)
  44. set(_val "E")
  45. elseif(_val EQUAL 15)
  46. set(_val "F")
  47. endif()
  48. set(_res "${_val}${_res}")
  49. endwhile()
  50. set(${HEX} "0x${_res}" PARENT_SCOPE)
  51. endfunction()