rocknroll

291
Reputation
191 views

Registered User

Name rocknroll
Member for 5 months
Seen 2 days ago
Website
Location
Age
My motto is "Live To Learn And You Will Learn To Live". Always wanted to be a programmer. I Love working on Linux platform
Sep
17
accepted Programming resources for C++ in Linux
Sep
10
asked Problem in Line Editor in Qt?
Sep
1
comment How to terminate a QThread?
@Donotalo, Pipes are a form of Interprocess communication (IPC), as the names suggests, it is used to communicate between threads. I used pipes to eliminate certain synchronisation issues that cropped up with the use of singleton pattern(or antipattern I should say :-) ).
Aug
28
comment C++ class design problem
Singleton, are you crazy? IT will bring with it, its own share of issues. Believe me guys I have used it and it is a pia if threading is also involved. I would never suggest you to use singleton because whatever can be done with singleton can be done without it. Also, it will bring with it problems which will manifest when you expect the least. So if u go ahead with it good luck to u mate!
Aug
27
comment Passing Array of objects Composed of other objects as reference to Functions In C++?
@pavel: sorry mate i meant "array of objects" not array of objects to functions.
Aug
27
revised Passing Array of objects Composed of other objects as reference to Functions In C++?
added 36 characters in body; edited title; added 64 characters in body
Aug
27
comment Passing Array of objects Composed of other objects as reference to Functions In C++?
@Pavel: I couldn't find declaration of a function which accepts an array of objects to functions, that is one of the questions I have asked?
Aug
27
revised Passing Array of objects Composed of other objects as reference to Functions In C++?
added 10 characters in body; added 4 characters in body
Aug
27
asked Passing Array of objects Composed of other objects as reference to Functions In C++?
Aug
26
asked Running the executable does nothing
Aug
25
revised Programming resources for C++ in Linux
added 8 characters in body
Aug
25
awarded  Supporter
Aug
25
comment processEvents And Memory Leak?
thanks for considering my question but it is not about the QTimer object.
Aug
25
awarded  Critic
Aug
25
comment Programming resources for C++ in Linux
Why are u surprised AT? The first thing I learned on a Linux machine was vi and I don't think much of myself, so if I can do it, others can surely do much better.
Aug
24
awarded  Teacher
Aug
24
answered Programming resources for C++ in Linux
Aug
24
answered How to terminate a QThread?
Aug
24
comment processEvents And Memory Leak?
this cannot be done as I have to continuously send commands to the h/w
Aug
24
revised processEvents And Memory Leak?
deleted 84 characters in body
Aug
24
asked processEvents And Memory Leak?
Aug
12
comment C++/Qt memory Leak?
I haven't changed default signal slot settings till now, so it is the default setting (which I don't know about, may be it is queued connections).
Aug
12
comment C++/Qt memory Leak?
@Tim In Qt we have only one GUI thread per application. Now if we club the handling of data acquisition with this thread for an external device interface, would this lead to steady increase in memory size or not? Because I am facing such a scenario in an application not developed by my team. An external device interface is clubbed with the main GUI thread. The main GUI also updates when other external devices send data in addition to the device interface which is piggybacking on it. I suspect this design to be the culprit but haven't find a reliable source to corroborate my point
Aug
12
comment C++/Qt memory Leak?
It is different Neil, the earlier question was actually a de-facto memory leak whereas this post was meant to highlight this issue as many people like me won't know that increase in memory size can be due to queuing of signal slot connections.
Aug
12
asked C++/Qt memory Leak?
Aug
12
comment Hex to String Conversion C++/C/Qt?
I expect it to print character 1
Aug
12
comment Hex to String Conversion C++/C/Qt?
there in lies the problem jlaep. I wanted 5 after A* and it got printed ".". Do you understand the issue now. 5 is the checksum which is given as 0x05 but isn't printed
Aug
11
comment Hex to String Conversion C++/C/Qt?
@Jla3ep. Ok here is the sample data individual character in hex as the device is sending 49,46,50,4a,4b,51,52,43,2c,31,32,33,2e,34,2c,54,2c,41,2c,2b,33,30,2e,30,30,2c,41,2c,2d,33,30,2e,30,30,2c,41,2a,05,0d,0a The third last byte 05 is checksum which is giving the problem. I collect it in unsigned char buffer and convert this buffer to a QString by casting it to const char*.
Aug
11
comment Hex to String Conversion C++/C/Qt?
@Jla3ep I get data on a serial port from where I read it in a unsigned char[FIXED SIZE] buffer. This I convert to a string as mentioned in my post. What I am looking at is a way to eliminate \0 character in my received data or a conversion that doesn't implicitly convert to prepending a \0 before a hex value.
Aug
11
revised Hex to String Conversion C++/C/Qt?
Sample code provided
Aug
11
comment Hex to String Conversion C++/C/Qt?
I checked and text.data() as suggested by you give same issues because it returns a char* or const char*:
Aug
11
comment Hex to String Conversion C++/C/Qt?
Sorry guys for note encoding it in code tags
Aug
11
revised Hex to String Conversion C++/C/Qt?
added 40 characters in body
Aug
11
asked Hex to String Conversion C++/C/Qt?
Jul
28
comment Good Readings on Unix/Linux Socket Programming?
It has been refered by all and sundry, I am sure there are other good readings as well. Trying out its examples is a PIA. The problem I see is the headers given in the examples are wrappers for the actual functions and that is not how one learns the API. And most importantly they don't compile (atleast on my system after umpteen trials it failed repeatedly)
Jul
28
asked Good Readings on Unix/Linux Socket Programming?
Jul
27
revised Detecting memory leaks in C++ Qt combine?
added 2613 characters in body
Jul
27
comment Detecting memory leaks in C++ Qt combine?
Point noted Mr Neil but inn my case it starts at 60 MB and in 60 hrs reached 295 MB. This I guess is a memory leak but on reviewing the code I couldn't find any leaks as such.
Jul
27
revised Detecting memory leaks in C++ Qt combine?
added 34 characters in body
Jul
27
asked Detecting memory leaks in C++ Qt combine?
Jul
18
accepted serial communication anomaly in Linux?
Jul
17
asked Is comeau compiler worth it compared to gcc?
Jul
17
answered serial communication anomaly in Linux?
Jul
16
asked serial communication anomaly in Linux?
Jul
15
comment Fixed Length Float in C/C++?
thanks hooked but I was looking for functions similar to cin, scanf etc. May be some of us can contribute such a function to the C,C++ library as I found this a common requirement among my colleagues working in embedded systems domain.
Jul
15
comment Fixed Length Float in C/C++?
I know the semantics for printing such a scenario, but my requirement is of taking in data in a specific format using scanf, cin like functions. I have not come across any such function.
Jul
15
comment Fixed Length Float in C/C++?
Your tone sounds like you're trying to scare me off :)). Anyways let me re-phrase it for you, like scanf, cin are used to get values in a variable, is there a way to ensure that I get in xx.xx form in the float variable??
Jul
15
asked Fixed Length Float in C/C++?
Jul
14
asked What is the role of Magic Number in boot loading in Linux?
Jul
6
comment Good study material for C#,JavaScript,PHP?
welcome to the Qt fan club jr :)