static uint32_t last_seq_num=-0xffffffff;
static int suppress_ozy_packet = 0;
+static int tx_fifo_flag = 0;
static int current_rx=0;
// As a result, we set the "TX latency" to 40 msec (see below).
//
//
- //if (device == DEVICE_HERMES_LITE2 && isTransmitting()) {
- // fprintf(stderr,"TX FIFO: %d", control_in[3] & 0x7F);
- // if ((control_in[3] & 0xC0) == 0xC0) fprintf(stderr," OVER ");
- // if ((control_in[3] & 0xC0) == 0x80) fprintf(stderr," UNDER ");
- // fprintf(stderr,"\n");
- //}
+ // Note after an RX/TX transition, "underflow" is reported
+ // until the TX fifo begins to fill, so we ignore underflows
+ // until the first packet reporting "no underflow" after each
+ // RX/TX transition.
+ //
+ if (device == DEVICE_HERMES_LITE2) {
+ if (!isTransmitting()) {
+ // during RX: set flag to zero
+ tx_fifo_flag=0;
+ } else {
+ // after RX/TX transition: ignore underflow condition
+ // until it first vanishes. tx_fifo_flag becomes "true"
+ // as soon as a "no underflow" condition is seen.
+ //
+ //fprintf(stderr,"TX FIFO: %d", control_in[3] & 0x7F);
+ //if ((control_in[3] & 0xC0) == 0xC0) fprintf(stderr," OVER ");
+ //if ((control_in[3] & 0xC0) == 0x80) fprintf(stderr," UNDER ");
+ //fprintf(stderr,"\n");
+ if ((control_in[3] & 0xC0) != 0x80) tx_fifo_flag=1;
+ if ((control_in[3] & 0xC0) == 0x80 && tx_fifo_flag) tx_fifo_underrun=1;
+ if ((control_in[3] & 0xC0) == 0xC0) tx_fifo_overrun=1;
+ }
+ }
if(ozy_software_version!=control_in[4]) {
ozy_software_version=control_in[4];
g_print("FPGA firmware version: %d.%d\n",ozy_software_version/10,ozy_software_version%10);
unsigned int current;
unsigned int average_current;
unsigned int n_current;
+unsigned int tx_fifo_underrun;
+unsigned int tx_fifo_overrun;
unsigned int alex_forward_power;
unsigned int alex_reverse_power;
unsigned int AIN3;
n_temperature=0;
current=0;
average_current=0;
+ tx_fifo_underrun=0;
+ tx_fifo_overrun=0;
n_current=0;
display_sequence_errors=TRUE;
extern unsigned int current;
extern unsigned int average_current;
extern unsigned int n_current;
+extern unsigned int tx_fifo_underrun;
+extern unsigned int tx_fifo_overrun;
extern unsigned int alex_forward_power;
extern unsigned int alex_reverse_power;
extern unsigned int IO1;
static gdouble filter_left=0.0;
static gdouble filter_right=0.0;
+static gint tx_fifo_count=0;
/* Create a new surface of the appropriate size to store our scribbles */
static gboolean
sprintf(text,"%0.0fmA",c);
cairo_move_to(cr, 160.0, 30.0);
cairo_show_text(cr, text);
+
+ if (tx_fifo_overrun || tx_fifo_underrun) {
+ cairo_set_source_rgb(cr,1.0,0.0,0.0);
+ if (tx_fifo_underrun) {
+ cairo_move_to(cr, 220.0, 30.0);
+ cairo_show_text(cr, "Underrun");
+ }
+ if (tx_fifo_overrun) {
+ cairo_move_to(cr, 300.0, 30.0);
+ cairo_show_text(cr, "Overrun");
+ }
+ // display for 2 seconds
+ tx_fifo_count++;
+ if (tx_fifo_count >= 2*tx->fps) {
+ tx_fifo_underrun=0;
+ tx_fifo_overrun=0;
+ tx_fifo_count=0;
+ }
+ }
}
cairo_destroy (cr);