2
votes
9answers
585 views
Threading issues in C++
I have asked this problem on many popular forums but no concrete response. My applciation uses serial communication to interface with external systems each having its own interface protocol. The da …
1
vote
1answer
339 views
Has someone used QSockeNotifier (Qt library) to read/write serial ports in Linux?
Hi all,
I am currently linux API like sigio,sigaction etc to interface with serial ports in Linux. And for GUI I am using Qt 4.2. I know about 3rd party QextSerial but I would stay away fr …
0
votes
4answers
126 views
Closing a thread with select() system call statement?
Hi all,
I have a thread to monitor serial port using select system call, the run function of the thread is as follows:
void <ProtocolClass>::run()
{
int fd = mPort …
0
votes
2answers
206 views
Real time video capture??
Hi all,
Just as a hobby, I want to capture realtime video. The source of video for a start would be a web camera. I have one from logitech. What I am trying to do is make a custom window wi …
1
vote
2answers
219 views
serial communication anomaly in Linux?
Hi all,
I am using select call to communicate with an external subsystem (protocol for the same has been provided and implemented as a Qt thread) using serial port RS232. We do not have the …
1
vote
3answers
506 views
Detecting memory leaks in C++ Qt combine?
Hi all,
I have an application that interacts with external devices using serial communication. There are two versions of the device differing in their implementations.
-->One is developed …
1
vote
5answers
930 views
Hex to String Conversion C++/C/Qt?
Hi all,
I am interfacing with an external device which is sending data in hex format. It is of form
> %abcdefg,+xxx.x,T,+yy.yy,T,+zz.zz,T,A*hhCRLF
…
0
votes
2answers
352 views
C++/Qt memory Leak?
Hi all,
I noticed a very interesting finding. I was testing my application involving a custom made GUI element which was being updated by data coming from an external source. The update of …
0
votes
2answers
104 views
processEvents And Memory Leak?
Hi all,
NOTE: THE CODE PROVIDED JUST GIVES THE IDEA OF THE STRUCTURE OF THE APPLICATION
I have a Qt application, interfacing with external hardware. The structure is such that the c …
0
votes
1answer
158 views
Passing Array of objects Composed of other objects as reference to Functions In C++?
Hi all,
I have a function which calls itself 10 times a second. I am using QTimer for repeat calls.
void DisplayClass::UpdateGuiWithData()
{
//miscellaneous code which is …
0
votes
0answers
68 views
Problem in Line Editor in Qt?
Hi all,
I am trying to set the text of line editor in Qt on linux. It works for all but 2 line editors which for some strange reason don't display the text even when we set the text using …
0
votes
Threading issues in C++
Thank You all for your prompt responses. Wow this is a great place to share your views. I haven't seen so many responses to this problem. Keep the discussion going guys. I have implemented some of …
0
votes
Qt - activate window
Regarding Qt::Tool WindowFlags To quote Qt documentation
Indicates that the widget is a tool
window. A tool window is often a small
window with a smaller than usual titl …
0
votes
serial communication anomaly in Linux?
Hi all,
I have solved the problem. My apologies if I couldn't get across my point. Earlier we were using signal handling for serial interfacing with each system connected to a dedicated ser …
1
vote
How to terminate a QThread?
Using flags is an obvious and the most common way to do the trick, but if you are working on a linux/unix platform I would advise you to use pipes instead. I had the same issue where I used a flag …
