C/C++ Java vs wxWidgets or GTK+ with c++ for a PC ground station

AI Thread Summary
For developing a cross-platform ground control station for a remote-controlled robot, Java, GTK++, and Qt are being considered as alternatives to win32API. The user finds Processing insufficient due to its lack of low-level programming capabilities, such as memcpy and static casting. Qt is noted for its intuitive API, especially for those familiar with event-driven programming, despite the initial learning curve. The discussion emphasizes the need for a robust solution capable of handling high data rates and processing requirements. Overall, Qt appears to be a favorable option compared to other frameworks.
Jarfi
Messages
384
Reaction score
12
I've got experience with win32API but its' a pain in the ass.

What else is good for cross platform low level programming of apps, want it to work for PC, linux, be able to handle serial data streams, convert data and do C++ tier things.

So far been using processing but that's not powerful enough, basically limited version of C++ with graphical functions.

Is Java good? how about GTK++, which has better workflow

-Jarfi
 
Technology news on Phys.org
You could use pretty much any programming language you want for that. In which way is processing not powerful enough? And what kind of apps do you want to write?
 
DrZoidberg said:
You could use pretty much any programming language you want for that. In which way is processing not powerful enough? And what kind of apps do you want to write?
Processing doesn't have basic functions it seems such as memcpy, static casting and everything that is generally low level code. It's merely an educational tool. I am writing a ground control station, for a remote controlled robot, it needs to handle high data rates and then process this data, then display the data on screen, also control surfaces etc.
 
Use Qt, very intuitive API if you are familiar with event driven programming.
 
  • Like
Likes Jarfi
newjerseyrunner said:
Use Qt, very intuitive API if you are familiar with event driven programming.
I have started learning QT. Seems to be a bit of a hazzle to learn all the new concepts but so far it's been better than win32API which was an absolute nightmare to get started with.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...

Similar threads

Replies
25
Views
4K
Back
Top