Signal Handling
-
@yuvaram Hi
Actually i want to know which will be better, I am new to it, Can you elaborate and tell how does it work. -
What kind of board is that ?
What will you extract from it that you want to make available to other application(s) ?
How are you getting the data from that "lower level" ?
-
What kind of board is that ?
What will you extract from it that you want to make available to other application(s) ?
How are you getting the data from that "lower level" ?
What kind of board is that ?
iMX-6 board.
What will you extract from it that you want to make available to other application(s) ?
I have an code running continuously in the backend, from which i want to read the output and based on that make some changes in my application UI.
How are you getting the data from that "lower level" ?
it will be giving the output in the terminal, from which i want to read.
Thanks
-
What is that backend ?
What are you reading from the board ?
-
-
Then, why not integrate that C code directly in your application ?
-
Do you mean contact a REST service to get the data ?
-
Then why do you need to catch signal from the terminal if you have to contact a web service ?
-
Then why do you need to catch signal from the terminal if you have to contact a web service ?
-
Hi...i am a new user here. As per my knowledge you could use QProcess to capture the terminal application's standard output, if you start it from your application. Signal & Slots is applicable within a process.Inorder to communicate between processes, use IPC mechanism.