Hi,
The FlexRay protocol specs document (can be obtained from www.flexray.com) contains the algorithm, for the header CRC remember to have the inital values as:
vCrcSize=11;
vCrcInit=[0 0 0 0 0 0 1 1 0 1 0];
vData=[1 1 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0];
vCrcPolynomial=[0 1 1 1 0 0 0 0 1 0 1];
vData as you know is
1 bit 1 bit 11bits 7bits
[syncFrameBit,startUpFrameBit,frameID,payloadLength]
I found that the CRC result in the end was the other way around (LSB was on the left!)
Good luck!
Kassem