From 4bbefa5c47eab04b79e3a52623ac76134f7c0fca Mon Sep 17 00:00:00 2001 From: qwell Date: Tue, 5 Dec 2006 20:15:37 +0000 Subject: Expand on r48273 (from issue 8506), to translate more of the fskmodem stuff to English. r48273 dealt with the comments and such, this deals with the code itself. (This couldn't have been easily done if it weren't for 48273 - thanks again for that merbanan) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48276 f38db490-d61c-443f-a65b-d21fe96a405b --- include/asterisk/fskmodem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/asterisk/fskmodem.h') diff --git a/include/asterisk/fskmodem.h b/include/asterisk/fskmodem.h index 76211e507..3b350fb55 100644 --- a/include/asterisk/fskmodem.h +++ b/include/asterisk/fskmodem.h @@ -35,7 +35,7 @@ typedef struct { float spb; /*!< Samples / Bit */ int nbit; /*!< Number of Data Bits (5,7,8) */ float nstop; /*!< Number of Stop Bits 1,1.5,2 */ - int paridad; /*!< Parity 0=none 1=even 2=odd */ + int parity; /*!< Parity 0=none 1=even 2=odd */ int hdlc; /*!< Modo Packet */ float x0; float x1; @@ -53,7 +53,7 @@ typedef struct { int state; int pcola; /*!< Pointer to data queues */ float cola_in[NCOLA]; /*!< Queue of input samples */ - float cola_filtro[NCOLA]; /*!< Queue of samples after filters */ + float cola_filter[NCOLA]; /*!< Queue of samples after filters */ float cola_demod[NCOLA]; /*!< Queue of demodulated samples */ } fsk_data; @@ -66,6 +66,6 @@ typedef struct { \arg 1: An output byte was received and stored in outbyte \arg -1: An error occured in the transmission He must be called with at least 80 bytes of buffer. */ -int fsk_serie(fsk_data *fskd, short *buffer, int *len, int *outbyte); +int fsk_serial(fsk_data *fskd, short *buffer, int *len, int *outbyte); #endif /* _ASTERISK_FSKMODEM_H */ -- cgit v1.2.3