I want to write a simple application to read a data stream from a USB input, select some record types and output to an Rs232 output. Which is the best programming language please? Any sample programmes welcome.
Thanks
Personally I'd probably use Ruby or Perl, others would likely suggest Python. In reality most common languages will probably do what you need, you should then choose the one you're happiest learning and think you can get the best support with when you get stuck (Python probably has the largest following in these parts).PeterW50 wrote:I want to write a simple application to read a data stream from a USB input, select some record types and output to an Rs232 output. Which is the best programming language please? Any sample programmes welcome.
Thanks
And I would suggest C. But yes, Python is popular, well supported here, and would be a good choice if outright speed is not an issue (of course the low level library stuff you will use will likely be written in C anyway!!).mfa298 wrote: others would likely suggest Python. In reality most common languages will probably do what you need, you should then choose the one you're happiest learning and think you can get the best support with when you get stuck (Python probably has the largest following in these parts).
Heh, I did consider also listing C (and I've done nmea parsing in C, both on the pi and avr) but it's not such a beginner friendly languagejahboater wrote:And I would suggest C.