Index: HD/utils.py =================================================================== diff -u -r0da0106eca868b9144298c60911710b3414a5837 -ref59d2c0f0dc5aadfde4ad50554d5c686dd4c0d1 --- HD/utils.py (.../utils.py) (revision 0da0106eca868b9144298c60911710b3414a5837) +++ HD/utils.py (.../utils.py) (revision ef59d2c0f0dc5aadfde4ad50554d5c686dd4c0d1) @@ -5,7 +5,7 @@ RESET = 1 -def integer_to_byte_array(val): +def integer_to_bytearray(val): """ Converts an integer value into a byte array (little endian) @@ -18,7 +18,7 @@ return b -def float_to_byte_array(val): +def float_to_bytearray(val): """ Converts a float value into a byte array (little endian)