亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? sm_fsk9600.c

?? 該文件是rt_linux
?? C
字號:
/*****************************************************************************//* *	sm_fsk9600.c  --  soundcard radio modem driver,  *                        9600 baud G3RUH compatible FSK modem * *	Copyright (C) 1996  Thomas Sailer (sailer@ife.ee.ethz.ch) * *	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 2 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, write to the Free Software *	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * *  Please note that the GPL allows you to use the driver, NOT the radio. *  In order to use the radio, you need a license from the communications *  authority of your country. * */#include "sm.h"#include "sm_tbl_fsk9600.h"/* --------------------------------------------------------------------- */struct demod_state_fsk96 {	unsigned int shreg;	unsigned long descram;	unsigned int bit_pll;	unsigned char last_sample;	unsigned int dcd_shreg;	int dcd_sum0, dcd_sum1, dcd_sum2;	unsigned int dcd_time;};struct mod_state_fsk96 {	unsigned int shreg;	unsigned long scram;	unsigned char tx_bit;	unsigned char *txtbl;	unsigned int txphase;};/* --------------------------------------------------------------------- */#define DESCRAM_TAP1 0x20000#define DESCRAM_TAP2 0x01000#define DESCRAM_TAP3 0x00001#define DESCRAM_TAPSH1 17#define DESCRAM_TAPSH2 12#define DESCRAM_TAPSH3 0#define SCRAM_TAP1 0x20000 /* X^17 */#define SCRAM_TAPN 0x00021 /* X^0+X^5 *//* --------------------------------------------------------------------- */static void modulator_9600_4_u8(struct sm_state *sm, unsigned char *buf, unsigned int buflen){	struct mod_state_fsk96 *st = (struct mod_state_fsk96 *)(&sm->m);	for (; buflen > 0; buflen--) {		if (!st->txphase++) {			if (st->shreg <= 1)				st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;			st->scram = (st->scram << 1) | (st->scram & 1);			st->scram ^= !(st->shreg & 1);			st->shreg >>= 1;			if (st->scram & (SCRAM_TAP1 << 1))				st->scram ^= SCRAM_TAPN << 1;			st->tx_bit = (st->tx_bit << 1) | (!!(st->scram & (SCRAM_TAP1 << 2)));			st->txtbl = fsk96_txfilt_4 + (st->tx_bit & 0xff);		}		if (st->txphase >= 4)			st->txphase = 0;		*buf++ = *st->txtbl;		st->txtbl += 0x100;	}}/* --------------------------------------------------------------------- */static void modulator_9600_4_s16(struct sm_state *sm, short *buf, unsigned int buflen){	struct mod_state_fsk96 *st = (struct mod_state_fsk96 *)(&sm->m);	for (; buflen > 0; buflen--) {		if (!st->txphase++) {			if (st->shreg <= 1)				st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;			st->scram = (st->scram << 1) | (st->scram & 1);			st->scram ^= !(st->shreg & 1);			st->shreg >>= 1;			if (st->scram & (SCRAM_TAP1 << 1))				st->scram ^= SCRAM_TAPN << 1;			st->tx_bit = (st->tx_bit << 1) | (!!(st->scram & (SCRAM_TAP1 << 2)));			st->txtbl = fsk96_txfilt_4 + (st->tx_bit & 0xff);		}		if (st->txphase >= 4)			st->txphase = 0;		*buf++ = ((*st->txtbl)-0x80) << 8;		st->txtbl += 0x100;	}}/* --------------------------------------------------------------------- */static void demodulator_9600_4_u8(struct sm_state *sm, const unsigned char *buf, unsigned int buflen){	struct demod_state_fsk96 *st = (struct demod_state_fsk96 *)(&sm->d);	static const int pll_corr[2] = { -0x1000, 0x1000 };	unsigned char curbit;	unsigned int descx;	for (; buflen > 0; buflen--, buf++) {		st->dcd_shreg <<= 1;		st->bit_pll += 0x4000;		curbit = (*buf >= 0x80);		if (st->last_sample ^ curbit) {			st->dcd_shreg |= 1;			st->bit_pll += pll_corr[st->bit_pll < 0xa000];			st->dcd_sum0 += 8 * hweight8(st->dcd_shreg & 0x0c) - 				!!(st->dcd_shreg & 0x10);		}		st->last_sample = curbit;		hdlcdrv_channelbit(&sm->hdrv, st->last_sample);		if ((--st->dcd_time) <= 0) {			hdlcdrv_setdcd(&sm->hdrv, (st->dcd_sum0 + 						   st->dcd_sum1 + 						   st->dcd_sum2) < 0);			st->dcd_sum2 = st->dcd_sum1;			st->dcd_sum1 = st->dcd_sum0;			st->dcd_sum0 = 2; /* slight bias */			st->dcd_time = 240;		}		if (st->bit_pll >= 0x10000) {			st->bit_pll &= 0xffff;			st->descram = (st->descram << 1) | curbit;			descx = st->descram ^ (st->descram >> 1);			descx ^= ((descx >> DESCRAM_TAPSH1) ^				  (descx >> DESCRAM_TAPSH2));			st->shreg >>= 1;			st->shreg |= (!(descx & 1)) << 16;			if (st->shreg & 1) {				hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1);				st->shreg = 0x10000;			}			diag_trigger(sm);		}		diag_add_one(sm, ((short)(*buf - 0x80)) << 8);	}}/* --------------------------------------------------------------------- */static void demodulator_9600_4_s16(struct sm_state *sm, const short *buf, unsigned int buflen){	struct demod_state_fsk96 *st = (struct demod_state_fsk96 *)(&sm->d);	static const int pll_corr[2] = { -0x1000, 0x1000 };	unsigned char curbit;	unsigned int descx;	for (; buflen > 0; buflen--, buf++) {		st->dcd_shreg <<= 1;		st->bit_pll += 0x4000;		curbit = (*buf >= 0);		if (st->last_sample ^ curbit) {			st->dcd_shreg |= 1;			st->bit_pll += pll_corr[st->bit_pll < 0xa000];			st->dcd_sum0 += 8 * hweight8(st->dcd_shreg & 0x0c) - 				!!(st->dcd_shreg & 0x10);		}		st->last_sample = curbit;		hdlcdrv_channelbit(&sm->hdrv, st->last_sample);		if ((--st->dcd_time) <= 0) {			hdlcdrv_setdcd(&sm->hdrv, (st->dcd_sum0 + 						   st->dcd_sum1 + 						   st->dcd_sum2) < 0);			st->dcd_sum2 = st->dcd_sum1;			st->dcd_sum1 = st->dcd_sum0;			st->dcd_sum0 = 2; /* slight bias */			st->dcd_time = 240;		}		if (st->bit_pll >= 0x10000) {			st->bit_pll &= 0xffff;			st->descram = (st->descram << 1) | curbit;			descx = st->descram ^ (st->descram >> 1);			descx ^= ((descx >> DESCRAM_TAPSH1) ^				  (descx >> DESCRAM_TAPSH2));			st->shreg >>= 1;			st->shreg |= (!(descx & 1)) << 16;			if (st->shreg & 1) {				hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1);				st->shreg = 0x10000;			}			diag_trigger(sm);		}		diag_add_one(sm, *buf);	}}/* --------------------------------------------------------------------- */static void modulator_9600_5_u8(struct sm_state *sm, unsigned char *buf, unsigned int buflen){	struct mod_state_fsk96 *st = (struct mod_state_fsk96 *)(&sm->m);	for (; buflen > 0; buflen--) {		if (!st->txphase++) {			if (st->shreg <= 1)				st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;			st->scram = (st->scram << 1) | (st->scram & 1);			st->scram ^= !(st->shreg & 1);			st->shreg >>= 1;			if (st->scram & (SCRAM_TAP1 << 1))				st->scram ^= SCRAM_TAPN << 1;			st->tx_bit = (st->tx_bit << 1) | (!!(st->scram & (SCRAM_TAP1 << 2)));			st->txtbl = fsk96_txfilt_5 + (st->tx_bit & 0xff);		}		if (st->txphase >= 5)			st->txphase = 0;		*buf++ = *st->txtbl;		st->txtbl += 0x100;	}}/* --------------------------------------------------------------------- */static void modulator_9600_5_s16(struct sm_state *sm, short *buf, unsigned int buflen){	struct mod_state_fsk96 *st = (struct mod_state_fsk96 *)(&sm->m);	for (; buflen > 0; buflen--) {		if (!st->txphase++) {			if (st->shreg <= 1)				st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;			st->scram = (st->scram << 1) | (st->scram & 1);			st->scram ^= !(st->shreg & 1);			st->shreg >>= 1;			if (st->scram & (SCRAM_TAP1 << 1))				st->scram ^= SCRAM_TAPN << 1;			st->tx_bit = (st->tx_bit << 1) | (!!(st->scram & (SCRAM_TAP1 << 2)));			st->txtbl = fsk96_txfilt_5 + (st->tx_bit & 0xff);		}		if (st->txphase >= 5)			st->txphase = 0;		*buf++ = ((*st->txtbl)-0x80)<<8;		st->txtbl += 0x100;	}}/* --------------------------------------------------------------------- */static void demodulator_9600_5_u8(struct sm_state *sm, const unsigned char *buf, unsigned int buflen){	struct demod_state_fsk96 *st = (struct demod_state_fsk96 *)(&sm->d);	static const int pll_corr[2] = { -0x1000, 0x1000 };	unsigned char curbit;	unsigned int descx;	for (; buflen > 0; buflen--, buf++) {		st->dcd_shreg <<= 1;		st->bit_pll += 0x3333;		curbit = (*buf >= 0x80);		if (st->last_sample ^ curbit) {			st->dcd_shreg |= 1;			st->bit_pll += pll_corr[st->bit_pll < 0x9999];			st->dcd_sum0 += 16 * hweight8(st->dcd_shreg & 0x0c) - 				hweight8(st->dcd_shreg & 0x70);		}		st->last_sample = curbit;		hdlcdrv_channelbit(&sm->hdrv, st->last_sample);		if ((--st->dcd_time) <= 0) {			hdlcdrv_setdcd(&sm->hdrv, (st->dcd_sum0 + 						   st->dcd_sum1 + 						   st->dcd_sum2) < 0);			st->dcd_sum2 = st->dcd_sum1;			st->dcd_sum1 = st->dcd_sum0;			st->dcd_sum0 = 2; /* slight bias */			st->dcd_time = 240;		}		if (st->bit_pll >= 0x10000) {			st->bit_pll &= 0xffff;			st->descram = (st->descram << 1) | curbit;			descx = st->descram ^ (st->descram >> 1);			descx ^= ((descx >> DESCRAM_TAPSH1) ^				  (descx >> DESCRAM_TAPSH2));			st->shreg >>= 1;			st->shreg |= (!(descx & 1)) << 16;			if (st->shreg & 1) {				hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1);				st->shreg = 0x10000;			}			diag_trigger(sm);		}		diag_add_one(sm, ((short)(*buf - 0x80)) << 8);	}}/* --------------------------------------------------------------------- */static void demodulator_9600_5_s16(struct sm_state *sm, const short *buf, unsigned int buflen){	struct demod_state_fsk96 *st = (struct demod_state_fsk96 *)(&sm->d);	static const int pll_corr[2] = { -0x1000, 0x1000 };	unsigned char curbit;	unsigned int descx;	for (; buflen > 0; buflen--, buf++) {		st->dcd_shreg <<= 1;		st->bit_pll += 0x3333;		curbit = (*buf >= 0);		if (st->last_sample ^ curbit) {			st->dcd_shreg |= 1;			st->bit_pll += pll_corr[st->bit_pll < 0x9999];			st->dcd_sum0 += 16 * hweight8(st->dcd_shreg & 0x0c) - 				hweight8(st->dcd_shreg & 0x70);		}		st->last_sample = curbit;		hdlcdrv_channelbit(&sm->hdrv, st->last_sample);		if ((--st->dcd_time) <= 0) {			hdlcdrv_setdcd(&sm->hdrv, (st->dcd_sum0 + 						   st->dcd_sum1 + 						   st->dcd_sum2) < 0);			st->dcd_sum2 = st->dcd_sum1;			st->dcd_sum1 = st->dcd_sum0;			st->dcd_sum0 = 2; /* slight bias */			st->dcd_time = 240;		}		if (st->bit_pll >= 0x10000) {			st->bit_pll &= 0xffff;			st->descram = (st->descram << 1) | curbit;			descx = st->descram ^ (st->descram >> 1);			descx ^= ((descx >> DESCRAM_TAPSH1) ^				  (descx >> DESCRAM_TAPSH2));			st->shreg >>= 1;			st->shreg |= (!(descx & 1)) << 16;			if (st->shreg & 1) {				hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1);				st->shreg = 0x10000;			}			diag_trigger(sm);		}		diag_add_one(sm, *buf);	}}/* --------------------------------------------------------------------- */static void demod_init_9600(struct sm_state *sm){	struct demod_state_fsk96 *st = (struct demod_state_fsk96 *)(&sm->d);	st->dcd_time = 240;	st->dcd_sum0 = 2;	}/* --------------------------------------------------------------------- */const struct modem_tx_info sm_fsk9600_4_tx = {	"fsk9600", sizeof(struct mod_state_fsk96), 38400, 9600,	modulator_9600_4_u8, modulator_9600_4_s16, NULL};const struct modem_rx_info sm_fsk9600_4_rx = {	"fsk9600", sizeof(struct demod_state_fsk96), 38400, 9600, 1, 4,	demodulator_9600_4_u8, demodulator_9600_4_s16, demod_init_9600};/* --------------------------------------------------------------------- */const struct modem_tx_info sm_fsk9600_5_tx = {	"fsk9600", sizeof(struct mod_state_fsk96), 48000, 9600,	modulator_9600_5_u8, modulator_9600_5_s16, NULL};const struct modem_rx_info sm_fsk9600_5_rx = {	"fsk9600", sizeof(struct demod_state_fsk96), 48000, 9600, 1, 5, 	demodulator_9600_5_u8, demodulator_9600_5_s16, demod_init_9600};/* --------------------------------------------------------------------- */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美经典一区二区| 日韩av二区在线播放| 精品一区二区影视| 欧美一区二区视频网站| 青青草原综合久久大伊人精品优势| 色94色欧美sute亚洲线路一ni| 亚洲日本一区二区| 欧美在线观看一区| eeuss鲁片一区二区三区| 国产精品久线在线观看| 99久久综合色| 亚洲一区二区三区中文字幕在线| 欧美乱妇23p| 麻豆精品在线观看| 国产欧美视频在线观看| 91免费视频网| 蜜桃视频一区二区三区在线观看| 2024国产精品视频| 99免费精品视频| 亚洲第四色夜色| 精品久久久久久最新网址| 国产成人av影院| 亚洲综合成人在线| 日韩精品一区二区三区蜜臀| 国产成人精品午夜视频免费| 亚洲人成精品久久久久久| 在线观看免费视频综合| 91麻豆自制传媒国产之光| 亚洲精品国产精品乱码不99| 欧美一区二区三区视频在线| 成人一区二区三区在线观看| 亚洲高清免费在线| 日韩免费高清视频| 99re这里只有精品首页| 日韩电影在线一区二区| 国产精品毛片久久久久久久| 欧美精品丝袜中出| 粉嫩av亚洲一区二区图片| 亚洲h动漫在线| 国产欧美中文在线| 91精品国产高清一区二区三区 | 日本精品一区二区三区高清| 全部av―极品视觉盛宴亚洲| 亚洲天堂a在线| 亚洲一区二区偷拍精品| 色爱区综合激月婷婷| 日本91福利区| 日本一区二区成人在线| 色呦呦国产精品| 日韩av网站免费在线| 亚洲精品乱码久久久久| 精品少妇一区二区三区在线播放 | 国产激情视频一区二区三区欧美| 亚洲欧美日韩国产一区二区三区 | 成人中文字幕在线| 午夜视频在线观看一区二区三区| 日韩国产高清影视| 国产视频一区二区在线| 欧美日韩亚洲高清一区二区| 成人中文字幕合集| 日韩国产在线观看一区| 国产精品视频在线看| 欧美一区二区私人影院日本| 91伊人久久大香线蕉| 精品一区二区精品| 偷拍一区二区三区| 亚洲视频你懂的| 国产人妖乱国产精品人妖| 欧美日韩精品免费| www.亚洲国产| 日韩经典一区二区| 亚洲另类在线视频| 国产色91在线| 精品国产精品网麻豆系列| 欧美性感一区二区三区| 成人少妇影院yyyy| 高清不卡在线观看| 捆绑变态av一区二区三区| 亚洲午夜久久久久久久久电影网 | 久久国产精品99久久人人澡| 亚洲综合色成人| 中文字幕在线不卡一区| 久久久久久久国产精品影院| 欧美丰满少妇xxxbbb| 91精品在线观看入口| 欧美性xxxxx极品少妇| 色伊人久久综合中文字幕| 欧美一区二区三区免费观看视频| 亚洲欧美国产77777| 国产日韩v精品一区二区| 日韩欧美一级二级三级| 欧美色图免费看| 日本韩国视频一区二区| 99精品视频一区二区三区| 国产iv一区二区三区| 国产一区二区导航在线播放| 美脚の诱脚舐め脚责91| 男女视频一区二区| 婷婷久久综合九色综合伊人色| 亚洲线精品一区二区三区| 一区二区三区成人| 日韩高清欧美激情| 日日摸夜夜添夜夜添精品视频 | 91精品国产综合久久国产大片| 欧美日韩免费电影| 欧美日韩国产美女| 国产精品久久三| 亚洲精品国产精品乱码不99| 亚洲无线码一区二区三区| 亚洲美女视频在线| 国产精品国产自产拍高清av| 久久久国产精品不卡| 中文字幕中文乱码欧美一区二区| 亚洲欧洲成人自拍| 一级女性全黄久久生活片免费| 亚洲综合久久av| 日韩国产在线观看一区| 激情五月婷婷综合| 成人性视频网站| 欧洲生活片亚洲生活在线观看| 欧美色倩网站大全免费| 精品美女一区二区| 国产精品毛片a∨一区二区三区| 中文字幕永久在线不卡| 亚洲一区在线视频| 久久精品国产亚洲一区二区三区| 国产美女一区二区| 色天使久久综合网天天| 91精品国产综合久久久久| 精品久久久久久综合日本欧美| 国产免费成人在线视频| 一区二区三区四区在线| 日产精品久久久久久久性色| 国产乱色国产精品免费视频| 91欧美一区二区| 日韩精品一区二区三区蜜臀| 久久影视一区二区| 一区二区三区精密机械公司| 美国精品在线观看| 久草这里只有精品视频| 国产99精品国产| 欧美丝袜丝交足nylons| 亚洲精品在线观| 国产69精品久久久久777| av一二三不卡影片| 制服丝袜中文字幕一区| 国产女主播一区| 日本91福利区| 色婷婷久久久久swag精品 | 一区二区欧美精品| 日韩av高清在线观看| 色综合久久天天| 国产亚洲精品bt天堂精选| 午夜欧美一区二区三区在线播放| 成人午夜视频在线观看| 欧美一卡在线观看| 亚洲乱码国产乱码精品精可以看| 成人免费不卡视频| 精品久久一二三区| 天天色综合成人网| 一本色道久久综合精品竹菊| 国产婷婷一区二区| 美腿丝袜一区二区三区| 欧美三级韩国三级日本一级| 日本一区二区三区久久久久久久久不 | 91免费观看国产| 久久久久久久久久久久久久久99| 一区二区三区资源| 亚洲欧美激情在线| 日韩中文字幕麻豆| 在线播放国产精品二区一二区四区| 国产精品久久久久三级| 经典三级在线一区| 日韩女优视频免费观看| 日韩精彩视频在线观看| 欧美日韩亚洲国产综合| 亚洲综合在线电影| 成人ar影院免费观看视频| 欧美一区二区观看视频| 亚洲 欧美综合在线网络| 色哟哟日韩精品| 中文字幕一区二区三区在线播放| 白白色亚洲国产精品| 中文字幕成人在线观看| 国产mv日韩mv欧美| 久久久精品天堂| 国产在线精品免费av| 亚洲精品一区二区三区香蕉| 久久精品久久精品| 久久久综合九色合综国产精品| 国内精品嫩模私拍在线| 久久综合九色综合97婷婷| 韩国女主播成人在线| 精品国产一区二区三区av性色| 久久精品国产久精国产| 精品蜜桃在线看| 国产精品一区二区你懂的| 国产欧美一区二区精品仙草咪| 成人免费黄色大片| 亚洲色欲色欲www|