fskmodem_float.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 1999 - 2005, Digium, Inc.
  5. *
  6. * Mark Spencer <markster@digium.com>
  7. *
  8. * Includes code and algorithms from the Zapata library.
  9. *
  10. * See http://www.asterisk.org for more information about
  11. * the Asterisk project. Please do not directly contact
  12. * any of the maintainers of this project for assistance;
  13. * the project provides a web site, mailing lists and IRC
  14. * channels for your use.
  15. *
  16. * This program is free software, distributed under the terms of
  17. * the GNU General Public License Version 2. See the LICENSE file
  18. * at the top of the source tree.
  19. */
  20. /*! \file
  21. *
  22. * \brief FSK Modulator/Demodulator
  23. *
  24. * \author Mark Spencer <markster@digium.com>
  25. *
  26. * \arg Includes code and algorithms from the Zapata library.
  27. *
  28. */
  29. /*** MODULEINFO
  30. <support_level>core</support_level>
  31. ***/
  32. #include "asterisk.h"
  33. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  34. #include <stdio.h>
  35. #include "asterisk/fskmodem.h"
  36. #define NBW 2
  37. #define BWLIST {75,800}
  38. #define NF 6
  39. #define FLIST {1400,1800,1200,2200,1300,2100}
  40. #define STATE_SEARCH_STARTBIT 0
  41. #define STATE_SEARCH_STARTBIT2 1
  42. #define STATE_SEARCH_STARTBIT3 2
  43. #define STATE_GET_BYTE 3
  44. static inline float get_sample(short **buffer, int *len)
  45. {
  46. float retval;
  47. retval = (float) **buffer / 256;
  48. (*buffer)++;
  49. (*len)--;
  50. return retval;
  51. };
  52. #define GET_SAMPLE get_sample(&buffer, len)
  53. /*! \brief Coefficients for input filters
  54. * Coefficients table, generated by program "mkfilter"
  55. * mkfilter is part of the zapatatelephony.org distribution
  56. * Format: coef[IDX_FREC][IDX_BW][IDX_COEF]
  57. * IDX_COEF = 0 => 1/GAIN
  58. * IDX_COEF = 1-6 => Coefficientes y[n]
  59. */
  60. static double coef_in[NF][NBW][8] = {
  61. {
  62. { 1.8229206611e-04,-7.8997325866e-01,2.2401819940e+00,-4.6751353581e+00,5.5080745712e+00,-5.0571565772e+00,2.6215820004e+00,0.0000000000e+00, },
  63. { 9.8532175289e-02,-5.6297236492e-02,3.3146713415e-01,-9.2239200436e-01,1.4844365184e+00,-2.0183258642e+00,2.0074154497e+00,0.0000000000e+00, },
  64. },
  65. {
  66. { 1.8229206610e-04,-7.8997325866e-01,7.7191410839e-01,-2.8075643964e+00,1.6948618347e+00,-3.0367273700e+00,9.0333559408e-01,0.0000000000e+00, },
  67. { 9.8531161839e-02,-5.6297236492e-02,1.1421579050e-01,-4.8122536483e-01,4.0121072432e-01,-7.4834487567e-01,6.9170822332e-01,0.0000000000e+00, },
  68. },
  69. {
  70. { 1.8229206611e-04,-7.8997325866e-01,2.9003821430e+00,-6.1082779024e+00,7.7169345751e+00,-6.6075999680e+00,3.3941838836e+00,0.0000000000e+00, },
  71. { 9.8539686961e-02,-5.6297236492e-02,4.2915323820e-01,-1.2609358633e+00,2.2399213250e+00,-2.9928879142e+00,2.5990173742e+00,0.0000000000e+00, },
  72. },
  73. {
  74. { 1.8229206610e-04,-7.8997325866e-01,-7.7191410839e-01,-2.8075643964e+00,-1.6948618347e+00,-3.0367273700e+00,-9.0333559408e-01,0.0000000000e+00, },
  75. { 9.8531161839e-02,-5.6297236492e-02,-1.1421579050e-01,-4.8122536483e-01,-4.0121072432e-01,-7.4834487567e-01,-6.9170822332e-01,0.0000000000e+00, },
  76. },
  77. {
  78. { 1.8229206611e-04,-7.8997325866e-01,2.5782298908e+00,-5.3629717478e+00,6.5890882172e+00,-5.8012914776e+00,3.0171839130e+00,0.0000000000e+00, },
  79. { 9.8534230718e-02,-5.6297236492e-02,3.8148618075e-01,-1.0848760410e+00,1.8441165168e+00,-2.4860666655e+00,2.3103384142e+00,0.0000000000e+00, },
  80. },
  81. {
  82. { 1.8229206610e-04,-7.8997325866e-01,-3.8715051001e-01,-2.6192408538e+00,-8.3977994034e-01,-2.8329897913e+00,-4.5306444352e-01,0.0000000000e+00, },
  83. { 9.8531160936e-02,-5.6297236492e-02,-5.7284484199e-02,-4.3673866734e-01,-1.9564766257e-01,-6.2028156584e-01,-3.4692356122e-01,0.0000000000e+00, },
  84. },
  85. };
  86. /*! \brief Coefficients for output filter
  87. * Coefficients table, generated by program "mkfilter"
  88. * Format: coef[IDX_BW][IDX_COEF]
  89. * IDX_COEF = 0 => 1/GAIN
  90. * IDX_COEF = 1-6 => Coefficientes y[n]
  91. */
  92. static double coef_out[NBW][8] = {
  93. { 1.3868644653e-08,-6.3283665042e-01,4.0895057217e+00,-1.1020074592e+01,1.5850766191e+01,-1.2835109292e+01,5.5477477340e+00,0.0000000000e+00, },
  94. { 3.1262119724e-03,-7.8390522307e-03,8.5209627801e-02,-4.0804129163e-01,1.1157139955e+00,-1.8767603680e+00,1.8916395224e+00,0.0000000000e+00, },
  95. };
  96. /*! Band-pass filter for MARK frequency */
  97. static inline float filterM(fsk_data *fskd,float in)
  98. {
  99. int i, j;
  100. double s;
  101. double *pc;
  102. pc = &coef_in[fskd->f_mark_idx][fskd->bw][0];
  103. fskd->fmxv[(fskd->fmp+6)&7] = in*(*pc++);
  104. s = (fskd->fmxv[(fskd->fmp + 6) & 7] - fskd->fmxv[fskd->fmp]) + 3 * (fskd->fmxv[(fskd->fmp + 2) & 7] - fskd->fmxv[(fskd->fmp + 4) & 7]);
  105. for (i = 0, j = fskd->fmp; i < 6; i++, j++)
  106. s += fskd->fmyv[j&7]*(*pc++);
  107. fskd->fmyv[j&7] = s;
  108. fskd->fmp++;
  109. fskd->fmp &= 7;
  110. return s;
  111. }
  112. /*! Band-pass filter for SPACE frequency */
  113. static inline float filterS(fsk_data *fskd,float in)
  114. {
  115. int i, j;
  116. double s;
  117. double *pc;
  118. pc = &coef_in[fskd->f_space_idx][fskd->bw][0];
  119. fskd->fsxv[(fskd->fsp+6)&7] = in*(*pc++);
  120. s = (fskd->fsxv[(fskd->fsp + 6) & 7] - fskd->fsxv[fskd->fsp]) + 3 * (fskd->fsxv[(fskd->fsp + 2) & 7] - fskd->fsxv[(fskd->fsp + 4) & 7]);
  121. for (i = 0, j = fskd->fsp; i < 6; i++, j++)
  122. s += fskd->fsyv[j&7]*(*pc++);
  123. fskd->fsyv[j&7] = s;
  124. fskd->fsp++;
  125. fskd->fsp &= 7;
  126. return s;
  127. }
  128. /*! Low-pass filter for demodulated data */
  129. static inline float filterL(fsk_data *fskd,float in)
  130. {
  131. int i, j;
  132. double s;
  133. double *pc;
  134. pc = &coef_out[fskd->bw][0];
  135. fskd->flxv[(fskd->flp + 6) & 7] = in * (*pc++);
  136. s = (fskd->flxv[fskd->flp] + fskd->flxv[(fskd->flp+6)&7]) +
  137. 6 * (fskd->flxv[(fskd->flp+1)&7] + fskd->flxv[(fskd->flp+5)&7]) +
  138. 15 * (fskd->flxv[(fskd->flp+2)&7] + fskd->flxv[(fskd->flp+4)&7]) +
  139. 20 * fskd->flxv[(fskd->flp+3)&7];
  140. for (i = 0,j = fskd->flp;i<6;i++,j++)
  141. s += fskd->flyv[j&7]*(*pc++);
  142. fskd->flyv[j&7] = s;
  143. fskd->flp++;
  144. fskd->flp &= 7;
  145. return s;
  146. }
  147. static inline int demodulator(fsk_data *fskd, float *retval, float x)
  148. {
  149. float xS,xM;
  150. fskd->cola_in[fskd->pcola] = x;
  151. xS = filterS(fskd,x);
  152. xM = filterM(fskd,x);
  153. fskd->cola_filter[fskd->pcola] = xM-xS;
  154. x = filterL(fskd,xM*xM - xS*xS);
  155. fskd->cola_demod[fskd->pcola++] = x;
  156. fskd->pcola &= (NCOLA-1);
  157. *retval = x;
  158. return 0;
  159. }
  160. static int get_bit_raw(fsk_data *fskd, short *buffer, int *len)
  161. {
  162. /* This function implements a DPLL to synchronize with the bits */
  163. float x,spb,spb2,ds;
  164. int f;
  165. spb = fskd->spb;
  166. if (fskd->spb == 7)
  167. spb = 8000.0 / 1200.0;
  168. ds = spb/32.;
  169. spb2 = spb/2.;
  170. for (f = 0;;) {
  171. if (demodulator(fskd, &x, GET_SAMPLE))
  172. return -1;
  173. if ((x * fskd->x0) < 0) { /* Transition */
  174. if (!f) {
  175. if (fskd->cont<(spb2))
  176. fskd->cont += ds;
  177. else
  178. fskd->cont -= ds;
  179. f = 1;
  180. }
  181. }
  182. fskd->x0 = x;
  183. fskd->cont += 1.;
  184. if (fskd->cont > spb) {
  185. fskd->cont -= spb;
  186. break;
  187. }
  188. }
  189. f = (x > 0) ? 0x80 : 0;
  190. return f;
  191. }
  192. int fsk_serial(fsk_data *fskd, short *buffer, int *len, int *outbyte)
  193. {
  194. int a;
  195. int i,j,n1,r;
  196. int samples = 0;
  197. int olen;
  198. switch (fskd->state) {
  199. /* Pick up where we left off */
  200. case STATE_SEARCH_STARTBIT2:
  201. goto search_startbit2;
  202. case STATE_SEARCH_STARTBIT3:
  203. goto search_startbit3;
  204. case STATE_GET_BYTE:
  205. goto getbyte;
  206. }
  207. /* We await for start bit */
  208. do {
  209. /* this was jesus's nice, reasonable, working (at least with RTTY) code
  210. to look for the beginning of the start bit. Unfortunately, since TTY/TDD's
  211. just start sending a start bit with nothing preceding it at the beginning
  212. of a transmission (what a LOSING design), we cant do it this elegantly */
  213. /*
  214. if (demodulator(zap,&x1)) return(-1);
  215. for (;;) {
  216. if (demodulator(zap,&x2)) return(-1);
  217. if (x1>0 && x2<0) break;
  218. x1 = x2;
  219. }
  220. */
  221. /* this is now the imprecise, losing, but functional code to detect the
  222. beginning of a start bit in the TDD sceanario. It just looks for sufficient
  223. level to maybe, perhaps, guess, maybe that its maybe the beginning of
  224. a start bit, perhaps. This whole thing stinks! */
  225. if (demodulator(fskd, &fskd->x1, GET_SAMPLE))
  226. return -1;
  227. samples++;
  228. for (;;) {
  229. search_startbit2:
  230. if (*len <= 0) {
  231. fskd->state = STATE_SEARCH_STARTBIT2;
  232. return 0;
  233. }
  234. samples++;
  235. if (demodulator(fskd, &fskd->x2, GET_SAMPLE))
  236. return(-1);
  237. #if 0
  238. printf("x2 = %5.5f ", fskd->x2);
  239. #endif
  240. if (fskd->x2 < -0.5)
  241. break;
  242. }
  243. search_startbit3:
  244. /* We await for 0.5 bits before using DPLL */
  245. i = fskd->spb/2;
  246. if (*len < i) {
  247. fskd->state = STATE_SEARCH_STARTBIT3;
  248. return 0;
  249. }
  250. for (; i>0; i--) {
  251. if (demodulator(fskd, &fskd->x1, GET_SAMPLE))
  252. return(-1);
  253. #if 0
  254. printf("x1 = %5.5f ", fskd->x1);
  255. #endif
  256. samples++;
  257. }
  258. /* x1 must be negative (start bit confirmation) */
  259. } while (fskd->x1 > 0);
  260. fskd->state = STATE_GET_BYTE;
  261. getbyte:
  262. /* Need at least 80 samples (for 1200) or
  263. 1320 (for 45.5) to be sure we'll have a byte */
  264. if (fskd->nbit < 8) {
  265. if (*len < 1320)
  266. return 0;
  267. } else {
  268. if (*len < 80)
  269. return 0;
  270. }
  271. /* Now we read the data bits */
  272. j = fskd->nbit;
  273. for (a = n1 = 0; j; j--) {
  274. olen = *len;
  275. i = get_bit_raw(fskd, buffer, len);
  276. buffer += (olen - *len);
  277. if (i == -1)
  278. return(-1);
  279. if (i)
  280. n1++;
  281. a >>= 1;
  282. a |= i;
  283. }
  284. j = 8-fskd->nbit;
  285. a >>= j;
  286. /* We read parity bit (if exists) and check parity */
  287. if (fskd->parity) {
  288. olen = *len;
  289. i = get_bit_raw(fskd, buffer, len);
  290. buffer += (olen - *len);
  291. if (i == -1)
  292. return(-1);
  293. if (i)
  294. n1++;
  295. if (fskd->parity == 1) { /* parity=1 (even) */
  296. if (n1&1)
  297. a |= 0x100; /* error */
  298. } else { /* parity=2 (odd) */
  299. if (!(n1&1))
  300. a |= 0x100; /* error */
  301. }
  302. }
  303. /* We read STOP bits. All of them must be 1 */
  304. for (j = fskd->nstop;j;j--) {
  305. r = get_bit_raw(fskd, buffer, len);
  306. if (r == -1)
  307. return(-1);
  308. if (!r)
  309. a |= 0x200;
  310. }
  311. /* And finally we return */
  312. /* Bit 8 : Parity error */
  313. /* Bit 9 : Framming error*/
  314. *outbyte = a;
  315. fskd->state = STATE_SEARCH_STARTBIT;
  316. return 1;
  317. }