OCEASOFT MOD THE WAVECARD RECEIVER MODEM COLLECT DATA TRANSMITTED BY END-POINT MODULES AND FORWARD IT TO THE MANAGEMENT SOFTWARE User Manual WaveCard user handbook
OCEASOFT THE WAVECARD RECEIVER MODEM COLLECT DATA TRANSMITTED BY END-POINT MODULES AND FORWARD IT TO THE MANAGEMENT SOFTWARE WaveCard user handbook
OCEASOFT >
Users Manual








![Document : XTLMOD -UserMan.sxwCRC principle coding in C language :#include <iostream.h>#include <stdio.h>#include <string.h>void main ( ){int Poly = 0x8408;int lg = 9;unsigned int Frame [] = { 0x0B, 0x20, 0x43, 0x06, 0x01, 0x00, 0x00, 0x02, 0X01};unsigned int Crc;int j, i_bits, carry;Crc = 0;for ( j=0 ; j < lg ; j++ ){Crc = Crc ^ Frame[j] ;for ( i_bits=0 ; i_bits < 8 ; i_bits++ ){carry = Crc & 1 ;Crc = Crc / 2 ;if ( carry ){Crc = Crc ^ Poly;}}}printf ( “CRC = %x “, Crc);}The computed CRC is the following : 41D2 hexadecimalThen LSB byte and MSB byte must be inverted before storage in the frame.This example allows to compute a CRC on a fix frame length equal to 9.XLTMOD Handbook page 9 of 74](https://usermanual.wiki/OCEASOFT/MOD/User-Guide-1258357-Page-9.png)



























































![Document : XTLMOD -UserMan.sxwAPPENDIX 2 : Electric interface of the WAVECARD➢WaveCard - 25mWPIN # PIN NAME DESCRIPTION INPUT / OUTPUT1 TX TX RS232 signal OUTPUT2 RX RX RS232 signal INPUT3 RESET RESET input (active to high level) INPUT4 OUT2 Not used OUTPUT5 OUT1 output active (level 1) when reception is on OUTPUT6 GND ground OUTPUT7 +3V OUT 3V regulated output voltage (10mA available) OUTPUT8SUPPLY VOLTAGEinput supply voltage (4V to 5.5V)minimum current 45mA INPUT➢WaveCard - 500mWPIN # PIN NAME DESCRIPTION INPUT / OUTPUT1 TX TX RS232 signal (0 ;+2,7Vmax) OUTPUT2 RX RX RS232 signal (0 ;+2,7Vmax) INPUT3 RESET RESET input (active to high level) INPUT4 OUT2 Not used OUTPUT5 OUT1 output active (high level) when periodic reception is on OUTPUT6 GND ground OUTPUT7 +2,7V OUT 2,7V regulated output voltage (10mA available) OUTPUT8SUPPLY VOLTAGEinput supply voltage [3V à 4,3V]• 700mA minimum current peak INPUTXLTMOD Handbook page 69 of 74](https://usermanual.wiki/OCEASOFT/MOD/User-Guide-1258357-Page-69.png)




