Delta Electronics Network Device VFD-S Spécifications Page 82

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 143
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 81
5
VFD-S Series
DELTA ELECTRONICS, INC. ALL RIGHTS RESERVED
5-55
Unsigned int crc_chk(unsigned char* data, unsigned char length){
int j;
unsigned int reg_crc=0xFFFF;
while(length--){
reg_crc ^= *data++;
for(j=0;j<8;j++){
if(reg_crc & 0x01){ /* LSB(b0)=1 */
reg_crc=(reg_crc>>1) ^ 0xA001;
}else{
reg_crc=reg_crc >>1;
}
}
}
return reg_crc;
}
Vue de la page 81
1 2 ... 77 78 79 80 81 82 83 84 85 86 87 ... 142 143

Commentaires sur ces manuels

Pas de commentaire