Posts by Pierre Barbosa • 17 points
1 post
-
0
votes1
answer266
viewsQ: What would the conversion of this algorithm from C to Python look like
unsigned char CheckSum(unsigned char *uBuff, unsigned char uBuffLen){ unsigned char i, uSum=0; for(i=0; i < uBuffLen; i++){ uSum = uSum + uBuff[i]; } uSum = (~uSum) +…