From 181e69a97cebd3057b810c455ef903ecdf5b74d9 Mon Sep 17 00:00:00 2001 From: Ed Gonzalez Date: Thu, 20 Aug 2015 14:23:37 -0500 Subject: [PATCH] Remove reset_softcfg from ThumbDV Init since it messes up new ThumbDVs --- DSP_API/ThumbDV/thumbDV.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DSP_API/ThumbDV/thumbDV.c b/DSP_API/ThumbDV/thumbDV.c index 3cdc432..2e8ed09 100644 --- a/DSP_API/ThumbDV/thumbDV.c +++ b/DSP_API/ThumbDV/thumbDV.c @@ -649,10 +649,10 @@ static void _connectSerial(int * serial_fd) thumbDV_writeSerial(*serial_fd, reset, 5); /* Block until we get data from serial port after reset */ thumbDV_processSerial(*serial_fd); - - unsigned char reset_softcfg[11] = {0x61, 0x00, 0x07, 0x00, 0x34, 0x05, 0x03, 0xEB, 0xFF, 0xFF, 0xFF}; - thumbDV_writeSerial(*serial_fd, reset_softcfg, 11); - thumbDV_processSerial(*serial_fd); +// +// unsigned char reset_softcfg[11] = {0x61, 0x00, 0x07, 0x00, 0x34, 0x05, 0x03, 0xEB, 0xFF, 0xFF, 0xFF}; +// thumbDV_writeSerial(*serial_fd, reset_softcfg, 11); +// thumbDV_processSerial(*serial_fd); unsigned char disable_parity[6] = {0x61, 0x00, 0x02, 0x00, 0x3F, 0x00}; thumbDV_writeSerial(*serial_fd, disable_parity, 6);