########################################################################### # # Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. # # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # # @file test_debug_text.py # # @author (last) Peter Lucia # @date (last) 21-May-2021 # @author (original) Peter Lucia # @date (original) 29-Apr-2021 # ############################################################################ import sys sys.path.append("../../") from dialin.ui.hd_simulator import HDSimulator from dialin.ui.messageBuilder import textToByte def test_debug_text(): hd_simulator = HDSimulator(log_level="CAN_ONLY") print(hd_simulator.cmd_set_hd_debug_text("test")) if __name__ == '__main__': test_debug_text()