view sw/mcsi-rxtx/rx_samples.c @ 9:62579cfff4fc

fc-mcsi-rxtx: more proper integration with ttyhacks
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 28 Oct 2024 06:02:04 +0000
parents 8a386263dd51
children c1d9b5d128f5
line wrap: on
line source

/*
 * In this module we handle PCM samples received from MCSI via the FPGA.
 */

#include <sys/types.h>
#include <stdio.h>

extern int is_active;

u_short rx_pcm_samples[160];

void
process_rx_block(buf)
	u_char *buf;
{
	unsigned n, samp;
	u_char *sp;

	sp = buf;
	for (n = 0; n < 160; n++) {
		samp = ((unsigned) sp[1] << 8) | ((unsigned) sp[0]);
		rx_pcm_samples[n] = samp;
	}
}