]> sigrok.org Git - libsigrok.git/commit
rdtech-tc: use literal string for poll command instead of array
authorGerhard Sittig <redacted>
Thu, 16 Mar 2023 01:31:37 +0000 (02:31 +0100)
committerGerhard Sittig <redacted>
Thu, 16 Mar 2023 13:29:30 +0000 (14:29 +0100)
commitf7c74c7fa50536bff621343d552f875570a81ef9
treeeec63ffe1367332c7a3b3fb4dab3a06173a53650
parent5955b58c964f4db6f05d5f7110327fb722e963ba
rdtech-tc: use literal string for poll command instead of array

Use a char pointer for the poll command which is a string literal. Which
eliminates the "necessity" to strip the NUL terminator from an array
after its construction. The strlen() for literals also gets resolved at
compile time. Which means that execution cost remains identical.

Rename the variable to lower case, it's not a preprocessor symbol.
src/hardware/rdtech-tc/protocol.c