Esempio n. 1
0
    def start_writer(self):
        '''
        Creates a new thread responsible for creating a 
        downstream connection to the ground station.
        '''
        writerThread = Writer('127.0.0.1', 9000, self.broadcastQueue)
        writerThread.setName('ISRU Writer')
        writerThread.start()

        return writerThread