Writing STRINGS to serial port in C++ linux

后端 未结 2 2131
渐次进展
渐次进展 2021-02-15 04:56

I know this question is scattered all over the internet, but still, nothing is getting me completely there yet. I want to write data to a serial port in C++ (linux) for a a Prop

2条回答
  •  星月不相逢
    2021-02-15 05:30

    I'm happy to solve my own solution but yet disappointed to not have seen the trivial matter much sooner. char by default are signed in c++, which makes it holding the range -128 to 127. However, we are expecting the ASCII values which are 0 to 255. Hence it's as simple as declaring it to be unsigned char str[] and everything else should work. Silly me, Silly me.

    Still, Thank you everyone for helping me!!!

提交回复
热议问题