DSRemote/serial_decoder.cpp

958 wiersze
28 KiB
C++
Czysty Zwykły widok Historia

2016-11-22 20:06:24 +00:00
/*
***************************************************************************
*
* Author: Teunis van Beelen
*
* Copyright (C) 2016 Teunis van Beelen
*
* Email: teuniz@gmail.com
*
***************************************************************************
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
***************************************************************************
2016-12-06 19:51:47 +00:00
*
* RS-232 protocol:
*
* settings in this example: 8N1
*
* character value in this example: 'G', 71, 0x47, 0b01000111
*
*
*
* idle start 1 1 1 0 0 0 1 0 stop idle
* bit bit
* -------------------------+ +-----+-----+-----+ +-----+ +-----+-----------------------------
* +12V | | | | | |
* | | | | | |
* | | | | | |
* | | | | | |
* -12V +-----+ +-----+-----+-----+ +-----+
*
* 0 1 2 3 4 5 6 7
*
* LSB MSB
*
*
* default (positive )line RS-232 LSB first (little endian)
*
* negative: everything inverted, used by microcontrollers, TTL/CMOS level
*
***************************************************************************
2016-11-22 20:06:24 +00:00
*/
void UI_Mainwindow::serial_decoder(void)
{
2016-12-03 22:37:04 +00:00
int i, j,
threshold[MAX_CHNS],
uart_tx_start,
2016-12-06 19:51:47 +00:00
uart_tx_data_bit,
uart_rx_start,
2016-12-08 16:48:26 +00:00
uart_rx_data_bit,
spi_data_mosi_bit,
spi_data_miso_bit,
spi_mosi_bit0_pos=0,
spi_miso_bit0_pos=0,
spi_clk_new,
spi_clk_old,
spi_chars=1,
stop_bit_error;
2016-12-08 16:48:26 +00:00
unsigned int uart_val=0,
spi_mosi_val=0,
spi_miso_val=0;
2016-12-03 22:37:04 +00:00
short s_max, s_min;
double uart_sample_per_bit,
uart_tx_x_pos,
2016-12-05 17:00:34 +00:00
uart_rx_x_pos,
bit_per_volt;
devparms.math_decode_uart_tx_nval = 0;
devparms.math_decode_uart_rx_nval = 0;
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
devparms.math_decode_spi_mosi_nval = 0;
devparms.math_decode_spi_miso_nval = 0;
2016-12-03 22:37:04 +00:00
if(devparms.wavebufsz < 32) return;
if(devparms.math_decode_threshold_auto)
{
for(j=0; j<MAX_CHNS; j++)
{
2016-12-06 19:51:47 +00:00
if(!devparms.chandisplay[j]) continue;
2016-12-03 22:37:04 +00:00
s_max = -32768;
s_min = 32767;
for(i=0; i<devparms.wavebufsz; i++)
{
if(devparms.wavebuf[j][i] > s_max) s_max = devparms.wavebuf[j][i];
if(devparms.wavebuf[j][i] < s_min) s_min = devparms.wavebuf[j][i];
}
threshold[j] = (s_max + s_min) / 2;
}
}
else
{
2016-12-05 18:59:35 +00:00
if(devparms.math_decode_mode == DECODE_MODE_UART)
2016-12-05 17:00:34 +00:00
{
2016-12-05 18:59:35 +00:00
if(devparms.math_decode_uart_tx)
2016-12-03 22:37:04 +00:00
{
2016-12-05 18:59:35 +00:00
if(devparms.modelserie == 6)
2016-12-05 17:00:34 +00:00
{
2016-12-05 18:59:35 +00:00
bit_per_volt = 32.0 / devparms.chanscale[devparms.math_decode_uart_tx - 1];
2016-12-05 17:00:34 +00:00
2016-12-05 18:59:35 +00:00
threshold[devparms.math_decode_uart_tx - 1] =
(devparms.math_decode_threshold_uart_tx +
devparms.chanoffset[devparms.math_decode_uart_tx - 1])
* bit_per_volt;
2016-12-05 17:00:34 +00:00
}
2016-12-05 18:59:35 +00:00
else
2016-12-05 17:00:34 +00:00
{
2016-12-05 18:59:35 +00:00
bit_per_volt = 25.0 / devparms.chanscale[devparms.math_decode_uart_tx - 1];
threshold[devparms.math_decode_uart_tx - 1] =
(devparms.math_decode_threshold[devparms.math_decode_uart_tx - 1] +
devparms.chanoffset[devparms.math_decode_uart_tx - 1])
* bit_per_volt;
2016-12-05 17:00:34 +00:00
}
2016-12-03 22:37:04 +00:00
}
2016-12-05 18:59:35 +00:00
if(devparms.math_decode_uart_rx)
{
if(devparms.modelserie == 6)
2016-12-05 17:00:34 +00:00
{
2016-12-05 18:59:35 +00:00
bit_per_volt = 32.0 / devparms.chanscale[devparms.math_decode_uart_rx - 1];
threshold[devparms.math_decode_uart_rx - 1] =
(devparms.math_decode_threshold_uart_rx +
devparms.chanoffset[devparms.math_decode_uart_rx - 1])
* bit_per_volt;
}
else
{
bit_per_volt = 25.0 / devparms.chanscale[devparms.math_decode_uart_rx - 1];
threshold[devparms.math_decode_uart_rx - 1] =
(devparms.math_decode_threshold[devparms.math_decode_uart_rx - 1] +
devparms.chanoffset[devparms.math_decode_uart_rx - 1])
* bit_per_volt;
2016-12-05 17:00:34 +00:00
}
2016-12-05 18:59:35 +00:00
}
2016-12-03 22:37:04 +00:00
}
2016-12-05 18:59:35 +00:00
else if(devparms.math_decode_mode == DECODE_MODE_SPI)
{
2016-12-06 19:51:47 +00:00
if(devparms.modelserie == 6)
{
// :FIXME
}
else
{
bit_per_volt = 25.0 / devparms.chanscale[devparms.math_decode_spi_clk];
threshold[devparms.math_decode_spi_clk] =
(devparms.math_decode_threshold[devparms.math_decode_spi_clk] +
devparms.chanoffset[devparms.math_decode_spi_clk])
* bit_per_volt;
}
if(devparms.math_decode_spi_mosi)
{
if(devparms.modelserie == 6)
{
2016-12-05 18:59:35 +00:00
// :FIXME
2016-12-06 19:51:47 +00:00
}
else
{
bit_per_volt = 25.0 / devparms.chanscale[devparms.math_decode_spi_mosi];
threshold[devparms.math_decode_spi_mosi] =
(devparms.math_decode_threshold[devparms.math_decode_spi_mosi] +
devparms.chanoffset[devparms.math_decode_spi_mosi])
* bit_per_volt;
}
}
if(devparms.math_decode_spi_miso)
{
if(devparms.modelserie == 6)
{
// :FIXME
}
else
{
bit_per_volt = 25.0 / devparms.chanscale[devparms.math_decode_spi_miso];
threshold[devparms.math_decode_spi_miso] =
(devparms.math_decode_threshold[devparms.math_decode_spi_miso] +
devparms.chanoffset[devparms.math_decode_spi_miso])
* bit_per_volt;
}
}
if(devparms.math_decode_spi_cs)
{
if(devparms.modelserie == 6)
{
// :FIXME
}
else
{
bit_per_volt = 25.0 / devparms.chanscale[devparms.math_decode_spi_cs];
threshold[devparms.math_decode_spi_cs] =
(devparms.math_decode_threshold[devparms.math_decode_spi_cs] +
devparms.chanoffset[devparms.math_decode_spi_cs])
* bit_per_volt;
}
}
2016-12-05 18:59:35 +00:00
}
2016-12-03 22:37:04 +00:00
}
if(devparms.math_decode_mode == DECODE_MODE_UART)
{
devparms.math_decode_uart_tx_nval = 0;
devparms.math_decode_uart_rx_nval = 0;
2016-12-03 22:37:04 +00:00
if(devparms.timebasedelayenable)
{
uart_sample_per_bit = (100.0 / devparms.timebasedelayscale) / (double)devparms.math_decode_uart_baud;
2016-12-03 22:37:04 +00:00
}
else
{
uart_sample_per_bit = (100.0 / devparms.timebasescale) / (double)devparms.math_decode_uart_baud;
2016-12-03 22:37:04 +00:00
}
if(uart_sample_per_bit < 3) return;
uart_tx_start = 0;
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
uart_tx_data_bit = 0;
2016-12-03 22:37:04 +00:00
uart_tx_x_pos = 1;
uart_rx_start = 0;
2016-12-06 19:51:47 +00:00
uart_rx_data_bit = 0;
uart_rx_x_pos = 1;
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
// if(devparms.modelserie == 6)
// {
// printf("chanscale: %f\n"
// "chanoffset: %f\n"
// "math_decode_threshold_uart_tx: %f\n"
// "math_decode_uart_tx: %i\n"
// "threshold: %i\n"
// "uart_sample_per_bit: %f\n"
// "wavebufsz: %i\n",
// devparms.chanscale[devparms.math_decode_uart_tx - 1],
// devparms.chanoffset[devparms.math_decode_uart_tx - 1],
// devparms.math_decode_threshold_uart_tx,
// devparms.math_decode_uart_tx,
// threshold[devparms.math_decode_uart_tx - 1],
// uart_sample_per_bit,
// devparms.wavebufsz);
// }
// else
// {
//
// printf("chanscale: %f\n"
// "chanoffset: %f\n"
// "math_decode_threshold: %f\n"
// "math_decode_uart_tx: %i\n"
// "threshold: %i\n"
// "uart_sample_per_bit: %f\n"
// "wavebufsz: %i\n",
// devparms.chanscale[devparms.math_decode_uart_tx - 1],
// devparms.chanoffset[devparms.math_decode_uart_tx - 1],
// devparms.math_decode_threshold[devparms.math_decode_uart_tx - 1],
// devparms.math_decode_uart_tx,
// threshold[devparms.math_decode_uart_tx - 1],
// uart_sample_per_bit,
// devparms.wavebufsz);
// }
2016-12-03 22:37:04 +00:00
if(devparms.math_decode_uart_tx)
{
2016-12-04 17:01:06 +00:00
if(devparms.chandisplay[devparms.math_decode_uart_tx - 1]) // don't try to decode if channel isn't enabled...
2016-12-03 22:37:04 +00:00
{
2016-12-05 19:09:07 +00:00
for(i=1; i<devparms.wavebufsz; i++)
2016-12-03 22:37:04 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.math_decode_uart_tx_nval >= DECODE_MAX_CHARS)
{
2016-12-05 19:09:07 +00:00
break;
}
2016-12-03 22:37:04 +00:00
2016-12-05 19:09:07 +00:00
if(!uart_tx_start)
{
2016-12-06 19:51:47 +00:00
if(devparms.math_decode_uart_pol) // positive, line level RS-232
2016-12-03 22:37:04 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.modelserie == 6)
2016-12-03 22:37:04 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i-1] >= devparms.math_decode_threshold_uart_tx)
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] < devparms.math_decode_threshold_uart_tx)
{
uart_tx_start = 1;
2016-12-08 16:48:26 +00:00
uart_val = 0;
2016-12-06 19:51:47 +00:00
uart_tx_x_pos = (uart_sample_per_bit * 1.5) + i;
2016-12-06 19:51:47 +00:00
i = uart_tx_x_pos - 1;
}
}
}
else // modelserie = 1, 2 or 4
{
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i-1] >= threshold[devparms.math_decode_uart_tx - 1])
{
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] < threshold[devparms.math_decode_uart_tx - 1])
{
uart_tx_start = 1;
2016-12-08 16:48:26 +00:00
uart_val = 0;
2016-12-06 19:51:47 +00:00
uart_tx_x_pos = (uart_sample_per_bit * 1.5) + i;
i = uart_tx_x_pos - 1;
}
}
}
2016-12-05 19:09:07 +00:00
}
2016-12-06 19:51:47 +00:00
else // negative, cpu level TTL/CMOS
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.modelserie == 6)
{
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i-1] < devparms.math_decode_threshold_uart_tx)
{
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] >= devparms.math_decode_threshold_uart_tx)
{
uart_tx_start = 1;
2016-12-08 16:48:26 +00:00
uart_val = 0;
2016-12-06 19:51:47 +00:00
uart_tx_x_pos = (uart_sample_per_bit * 1.5) + i;
i = uart_tx_x_pos - 1;
}
}
}
else // modelserie = 1, 2 or 4
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i-1] < threshold[devparms.math_decode_uart_tx - 1])
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] >= threshold[devparms.math_decode_uart_tx - 1])
{
uart_tx_start = 1;
2016-12-08 16:48:26 +00:00
uart_val = 0;
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
uart_tx_x_pos = (uart_sample_per_bit * 1.5) + i;
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
i = uart_tx_x_pos - 1;
}
}
2016-12-03 22:37:04 +00:00
}
}
2016-12-05 19:09:07 +00:00
}
2016-12-06 19:51:47 +00:00
else // uart_rx_start != 0
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.modelserie == 6)
2016-12-03 22:37:04 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] >= devparms.math_decode_threshold_uart_tx)
2016-12-03 22:37:04 +00:00
{
2016-12-08 16:48:26 +00:00
uart_val += (1 << uart_tx_data_bit);
}
2016-12-05 19:09:07 +00:00
}
2016-12-06 19:51:47 +00:00
else // modelserie = 1, 2 or 4
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] >= threshold[devparms.math_decode_uart_tx - 1])
{
2016-12-08 16:48:26 +00:00
uart_val += (1 << uart_tx_data_bit);
}
2016-12-05 19:09:07 +00:00
}
2016-12-06 19:51:47 +00:00
if(++uart_tx_data_bit == devparms.math_decode_uart_width)
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if((devparms.math_decode_uart_end) && (devparms.math_decode_format != 4)) // big endian?
{
2016-12-08 16:48:26 +00:00
uart_val = reverse_bitorder_8(uart_val);
2016-12-08 16:48:26 +00:00
uart_val >>= (8 - uart_tx_data_bit);
2016-12-06 19:51:47 +00:00
}
if(!devparms.math_decode_uart_pol) // positive, line level RS-232 or negative, cpu level TTL/CMOS?
{
2016-12-08 16:48:26 +00:00
uart_val = ~uart_val;
uart_val &= (0xff >> (8 - uart_tx_data_bit));
2016-12-05 19:09:07 +00:00
}
devparms.math_decode_uart_tx_val[devparms.math_decode_uart_tx_nval] = uart_val;
devparms.math_decode_uart_tx_val_pos[devparms.math_decode_uart_tx_nval] =
i - (uart_tx_data_bit * uart_sample_per_bit) + (0.5 * uart_sample_per_bit);
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
uart_tx_data_bit = 0;
2016-12-03 22:37:04 +00:00
2016-12-05 19:09:07 +00:00
uart_tx_start = 0;
2016-12-05 19:09:07 +00:00
uart_tx_x_pos += uart_sample_per_bit;
2016-12-04 17:01:06 +00:00
i = uart_tx_x_pos;
devparms.math_decode_uart_tx_err[devparms.math_decode_uart_tx_nval] = 0;
stop_bit_error = 0; // check stop bit
if(i < devparms.wavebufsz)
{
if(devparms.modelserie == 6)
{
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] >= devparms.math_decode_threshold_uart_tx)
{
stop_bit_error = 1;
}
}
else // modelserie = 1, 2 or 4
{
if(devparms.wavebuf[devparms.math_decode_uart_tx - 1][i] >= threshold[devparms.math_decode_uart_tx - 1])
{
stop_bit_error = 1;
}
}
if(devparms.math_decode_uart_pol)
{
if(stop_bit_error)
{
stop_bit_error = 0;
}
else
{
stop_bit_error = 1;
}
}
if(stop_bit_error)
{
devparms.math_decode_uart_tx_err[devparms.math_decode_uart_tx_nval] = 1;
}
}
2016-12-05 19:09:07 +00:00
if(devparms.math_decode_uart_stop == 1)
{
uart_tx_x_pos += uart_sample_per_bit / 2;
}
else if(devparms.math_decode_uart_stop == 2)
{
uart_tx_x_pos += uart_sample_per_bit;
}
2016-12-05 19:09:07 +00:00
if(devparms.math_decode_uart_par)
{
uart_tx_x_pos += uart_sample_per_bit;
2016-12-04 17:01:06 +00:00
}
2016-12-05 19:09:07 +00:00
i = uart_tx_x_pos - 1;
devparms.math_decode_uart_tx_nval++;
2016-12-05 19:09:07 +00:00
}
else
{
uart_tx_x_pos += uart_sample_per_bit;
i = uart_tx_x_pos - 1;
2016-12-03 22:37:04 +00:00
}
}
}
}
}
if(devparms.math_decode_uart_rx)
{
2016-12-04 17:01:06 +00:00
if(devparms.chandisplay[devparms.math_decode_uart_rx - 1]) // don't try to decode if channel isn't enabled...
{
2016-12-05 19:09:07 +00:00
for(i=1; i<devparms.wavebufsz; i++)
2016-12-03 22:37:04 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.math_decode_uart_rx_nval >= DECODE_MAX_CHARS)
2016-12-03 22:37:04 +00:00
{
2016-12-05 19:09:07 +00:00
break;
}
2016-12-05 19:09:07 +00:00
if(!uart_rx_start)
{
2016-12-06 19:51:47 +00:00
if(devparms.math_decode_uart_pol) // positive, line level RS-232
{
2016-12-06 19:51:47 +00:00
if(devparms.modelserie == 6)
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i-1] >= devparms.math_decode_threshold_uart_rx)
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] < devparms.math_decode_threshold_uart_rx)
{
uart_rx_start = 1;
uart_val = 0;
2016-12-06 19:51:47 +00:00
uart_rx_x_pos = (uart_sample_per_bit * 1.5) + i;
i = uart_rx_x_pos - 1;
}
}
}
else // modelserie = 1, 2 or 4
{
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i-1] >= threshold[devparms.math_decode_uart_rx - 1])
{
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] < threshold[devparms.math_decode_uart_rx - 1])
{
uart_rx_start = 1;
uart_val = 0;
2016-12-06 19:51:47 +00:00
uart_rx_x_pos = (uart_sample_per_bit * 1.5) + i;
i = uart_rx_x_pos - 1;
}
}
}
2016-12-05 19:09:07 +00:00
}
2016-12-06 19:51:47 +00:00
else // negative, cpu level TTL/CMOS
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.modelserie == 6)
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i-1] < devparms.math_decode_threshold_uart_rx)
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] >= devparms.math_decode_threshold_uart_rx)
{
uart_rx_start = 1;
uart_val = 0;
2016-12-06 19:51:47 +00:00
uart_rx_x_pos = (uart_sample_per_bit * 1.5) + i;
2016-12-06 19:51:47 +00:00
i = uart_rx_x_pos - 1;
}
}
}
else // modelserie = 1, 2 or 4
{
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i-1] < threshold[devparms.math_decode_uart_rx - 1])
{
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] >= threshold[devparms.math_decode_uart_rx - 1])
{
uart_rx_start = 1;
uart_val = 0;
2016-12-06 19:51:47 +00:00
uart_rx_x_pos = (uart_sample_per_bit * 1.5) + i;
i = uart_rx_x_pos - 1;
}
}
}
2016-12-03 22:37:04 +00:00
}
2016-12-05 19:09:07 +00:00
}
2016-12-06 19:51:47 +00:00
else // uart_rx_start != 0
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.modelserie == 6)
2016-12-03 22:37:04 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] >= devparms.math_decode_threshold_uart_rx)
{
2016-12-08 16:48:26 +00:00
uart_val += (1 << uart_rx_data_bit);
}
2016-12-05 19:09:07 +00:00
}
2016-12-06 19:51:47 +00:00
else // modelserie = 1, 2 or 4
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] >= threshold[devparms.math_decode_uart_rx - 1])
{
2016-12-08 16:48:26 +00:00
uart_val += (1 << uart_rx_data_bit);
}
2016-12-05 19:09:07 +00:00
}
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
if(++uart_rx_data_bit == devparms.math_decode_uart_width)
2016-12-05 19:09:07 +00:00
{
2016-12-06 19:51:47 +00:00
if((devparms.math_decode_uart_end) && (devparms.math_decode_format != 4)) // big endian?
{
2016-12-08 16:48:26 +00:00
uart_val = reverse_bitorder_8(uart_val);
2016-12-03 22:37:04 +00:00
2016-12-08 16:48:26 +00:00
uart_val >>= (8 - uart_rx_data_bit);
2016-12-06 19:51:47 +00:00
}
if(!devparms.math_decode_uart_pol) // positive, line level RS-232 or negative, cpu level TTL/CMOS?
{
2016-12-08 16:48:26 +00:00
uart_val = ~uart_val;
uart_val &= (0xff >> (8 - uart_rx_data_bit));
2016-12-05 19:09:07 +00:00
}
2016-12-03 22:37:04 +00:00
devparms.math_decode_uart_rx_val[devparms.math_decode_uart_rx_nval] = uart_val;
2016-12-03 22:37:04 +00:00
devparms.math_decode_uart_rx_val_pos[devparms.math_decode_uart_rx_nval] =
i - (uart_rx_data_bit * uart_sample_per_bit) + (0.5 * uart_sample_per_bit);
2016-12-03 22:37:04 +00:00
2016-12-06 19:51:47 +00:00
uart_rx_data_bit = 0;
2016-12-03 22:37:04 +00:00
2016-12-05 19:09:07 +00:00
uart_rx_start = 0;
2016-12-03 22:37:04 +00:00
2016-12-05 19:09:07 +00:00
uart_rx_x_pos += uart_sample_per_bit;
2016-12-04 17:01:06 +00:00
i = uart_rx_x_pos;
devparms.math_decode_uart_rx_err[devparms.math_decode_uart_rx_nval] = 0;
stop_bit_error = 0; // check stop bit
if(i < devparms.wavebufsz)
{
if(devparms.modelserie == 6)
{
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] >= devparms.math_decode_threshold_uart_rx)
{
stop_bit_error = 1;
}
}
else // modelserie = 1, 2 or 4
{
if(devparms.wavebuf[devparms.math_decode_uart_rx - 1][i] >= threshold[devparms.math_decode_uart_rx - 1])
{
stop_bit_error = 1;
}
}
if(devparms.math_decode_uart_pol)
{
if(stop_bit_error)
{
stop_bit_error = 0;
}
else
{
stop_bit_error = 1;
}
}
if(stop_bit_error)
{
devparms.math_decode_uart_rx_err[devparms.math_decode_uart_rx_nval] = 1;
}
}
2016-12-05 19:09:07 +00:00
if(devparms.math_decode_uart_stop == 1)
{
uart_rx_x_pos += uart_sample_per_bit / 2;
}
else if(devparms.math_decode_uart_stop == 2)
{
uart_rx_x_pos += uart_sample_per_bit;
}
2016-12-05 19:09:07 +00:00
if(devparms.math_decode_uart_par)
2016-12-03 22:37:04 +00:00
{
uart_rx_x_pos += uart_sample_per_bit;
2016-12-04 17:01:06 +00:00
}
2016-12-05 19:09:07 +00:00
i = uart_rx_x_pos - 1;
devparms.math_decode_uart_rx_nval++;
2016-12-05 19:09:07 +00:00
}
else
{
uart_rx_x_pos += uart_sample_per_bit;
i = uart_rx_x_pos - 1;
2016-12-03 22:37:04 +00:00
}
}
}
}
}
}
2016-12-06 19:51:47 +00:00
2016-12-08 16:48:26 +00:00
if(devparms.math_decode_mode == DECODE_MODE_SPI)
{
devparms.math_decode_spi_mosi_nval = 0;
devparms.math_decode_spi_miso_nval = 0;
spi_data_mosi_bit = 0;
spi_data_miso_bit = 0;
spi_mosi_val = 0;
spi_miso_val = 0;
if(devparms.math_decode_spi_width > 24)
{
spi_chars = 4;
}
else if(devparms.math_decode_spi_width > 16)
{
spi_chars = 3;
}
else if(devparms.math_decode_spi_width > 8)
{
spi_chars = 2;
}
else
{
spi_chars = 1;
}
if(devparms.math_decode_spi_edge) // sample at rising edge of spi clock?
{
spi_clk_old = 1;
}
else
{
spi_clk_old = 0;
}
if(!devparms.chandisplay[devparms.math_decode_spi_clk]) // without a clock we can't do much...
{
goto SPI_DECODE_OUT;
}
if(devparms.math_decode_spi_mode) // use chip select line?
{
if(devparms.math_decode_spi_cs) // is chip select channel selected?
{
if(!devparms.chandisplay[devparms.math_decode_spi_cs]) // is selected channel for CS enabled?
{
goto SPI_DECODE_OUT;
}
}
else
{
goto SPI_DECODE_OUT;
}
}
else
{
// FIXME use time out
}
for(i=0; i<devparms.wavebufsz; i++)
{
if(devparms.math_decode_spi_mosi_nval >= DECODE_MAX_CHARS)
{
break;
}
if(devparms.math_decode_spi_mode) // use chip select line?
{
if(devparms.math_decode_spi_select) // use positive chip select?
{
if(devparms.wavebuf[devparms.math_decode_spi_cs - 1][i] < threshold[devparms.math_decode_spi_cs - 1])
{
spi_data_mosi_bit = 0;
spi_data_miso_bit = 0;
continue; // chip select is not active
}
}
else // use negative chip select?
{
if(devparms.wavebuf[devparms.math_decode_spi_cs - 1][1] >= threshold[devparms.math_decode_spi_cs - 1])
{
spi_data_mosi_bit = 0;
spi_data_miso_bit = 0;
continue; // chip select is not active
}
}
}
if(devparms.wavebuf[devparms.math_decode_spi_clk][i] >= threshold[devparms.math_decode_spi_clk])
{
spi_clk_new = 1;
}
else
{
spi_clk_new = 0;
}
if(spi_clk_old == spi_clk_new)
{
continue; // no clock change
}
if(devparms.math_decode_spi_edge != spi_clk_new) // wrong clock edge?
{
spi_clk_old = spi_clk_new;
continue;
}
spi_clk_old = spi_clk_new;
if(devparms.math_decode_spi_mosi)
{
if(devparms.chandisplay[devparms.math_decode_spi_mosi - 1]) // don't try to decode if channel isn't enabled...
{
if(devparms.wavebuf[devparms.math_decode_spi_mosi - 1][i] >= threshold[devparms.math_decode_spi_mosi - 1])
{
spi_mosi_val += (1 << spi_data_mosi_bit);
}
if(!spi_data_mosi_bit) spi_mosi_bit0_pos = i;
if(++spi_data_mosi_bit == devparms.math_decode_spi_width)
{
if((devparms.math_decode_spi_end) && (devparms.math_decode_format != 4)) // big endian?
{
spi_mosi_val = reverse_bitorder_32(spi_mosi_val);
spi_mosi_val >>= (32 - spi_data_mosi_bit);
}
if(!devparms.math_decode_spi_pol)
{
spi_mosi_val = ~spi_mosi_val;
switch(spi_chars)
{
case 1: spi_mosi_val &= 0xff;
break;
case 2: spi_mosi_val &= 0xffff;
break;
case 3: spi_mosi_val &= 0xffffff;
break;
}
}
devparms.math_decode_spi_mosi_val[devparms.math_decode_spi_mosi_nval] = spi_mosi_val;
2016-12-09 18:05:05 +00:00
devparms.math_decode_spi_mosi_val_pos[devparms.math_decode_spi_mosi_nval] = spi_mosi_bit0_pos;
devparms.math_decode_spi_mosi_val_pos_end[devparms.math_decode_spi_mosi_nval++] = i;
2016-12-08 16:48:26 +00:00
spi_data_mosi_bit = 0;
spi_mosi_val = 0;
}
}
}
if(devparms.math_decode_spi_miso)
{
if(devparms.chandisplay[devparms.math_decode_spi_miso - 1]) // don't try to decode if channel isn't enabled...
{
if(devparms.wavebuf[devparms.math_decode_spi_miso - 1][i] >= threshold[devparms.math_decode_spi_miso - 1])
{
spi_miso_val += (1 << spi_data_miso_bit);
}
if(!spi_data_miso_bit) spi_miso_bit0_pos = i;
if(++spi_data_miso_bit == devparms.math_decode_spi_width)
{
if((devparms.math_decode_spi_end) && (devparms.math_decode_format != 4)) // big endian?
{
spi_miso_val = reverse_bitorder_32(spi_miso_val);
spi_miso_val >>= (32 - spi_data_miso_bit);
}
if(!devparms.math_decode_spi_pol)
{
spi_miso_val = ~spi_miso_val;
}
devparms.math_decode_spi_miso_val[devparms.math_decode_spi_miso_nval] = spi_miso_val;
2016-12-09 18:05:05 +00:00
devparms.math_decode_spi_miso_val_pos[devparms.math_decode_spi_miso_nval] = spi_miso_bit0_pos;
devparms.math_decode_spi_miso_val_pos_end[devparms.math_decode_spi_miso_nval++] = i;
2016-12-08 16:48:26 +00:00
spi_data_miso_bit = 0;
spi_miso_val = 0;
}
}
}
}
SPI_DECODE_OUT:
i = 0; // FIXME
}
2016-12-03 22:37:04 +00:00
}
2016-12-08 16:48:26 +00:00
inline unsigned char UI_Mainwindow::reverse_bitorder_8(unsigned char byte)
2016-12-03 22:37:04 +00:00
{
2016-12-08 16:48:26 +00:00
byte = (byte & 0xf0) >> 4 | (byte & 0x0f) << 4;
byte = (byte & 0xcc) >> 2 | (byte & 0x33) << 2;
byte = (byte & 0xaa) >> 1 | (byte & 0x55) << 1;
2016-12-03 22:37:04 +00:00
return byte;
2016-11-22 20:06:24 +00:00
}
2016-12-08 16:48:26 +00:00
inline unsigned int UI_Mainwindow::reverse_bitorder_32(unsigned int val)
{
val = (val & 0xffff0000) >> 16 | (val & 0x0000ffff) << 16;
val = (val & 0xff00ff00) >> 8 | (val & 0x00ff00ff) << 8;
val = (val & 0xf0f0f0f0) >> 4 | (val & 0x0f0f0f0f) << 4;
val = (val & 0xcccccccc) >> 2 | (val & 0x33333333) << 2;
val = (val & 0xaaaaaaaa) >> 1 | (val & 0x55555555) << 1;
return val;
}
2016-11-22 20:06:24 +00:00