MIL STD 1553 class creation
-
Hello everybody, I wanna create a class of MILSTD1553 by type of class like Qtcpserver, but for MILSTD1553, which steps I need to make for understand how does realized Qtcpserver under the hood. To create the same thing but for MILSTD1553. How can I make it?
-
Hello everybody, I wanna create a class of MILSTD1553 by type of class like Qtcpserver, but for MILSTD1553, which steps I need to make for understand how does realized Qtcpserver under the hood. To create the same thing but for MILSTD1553. How can I make it?
@EvanBarrera said in MIL STD 1553 class creation:
Hello everybody, I wanna create a class of MILSTD1553 by type of class like Qtcpserver, but for MILSTD1553, which steps I need to make for understand how does realized Qtcpserver under the hood. To create the same thing but for MILSTD1553. How can I make it?
To see how QTcpServer is implemented you can inspect the code that can be found in here
Given that MIL-STD-1553 defines a serial data bus, you may be better off looking at QSerialPort.
The environments in which you will find such a bus do not strike me as a place you would typically find Qt.
-
@EvanBarrera said in MIL STD 1553 class creation:
Hello everybody, I wanna create a class of MILSTD1553 by type of class like Qtcpserver, but for MILSTD1553, which steps I need to make for understand how does realized Qtcpserver under the hood. To create the same thing but for MILSTD1553. How can I make it?
To see how QTcpServer is implemented you can inspect the code that can be found in here
Given that MIL-STD-1553 defines a serial data bus, you may be better off looking at QSerialPort.
The environments in which you will find such a bus do not strike me as a place you would typically find Qt.
@ChrisW67 Thank you so much for fast response