I'm using Max OS X library on Lion,
I could able to get the beacon using demo_dylib:
Chan ID(1/1/5) - Rx:(0): [43],[34],[00],[03],[dc],[03],[01],[00]
By sending link command I got to Link Layer:
Chan ID(1/1/5) - Rx:(0): [43],[34],[01],[03],[07],[89],[18],[00]
Then I try to get to the transport layer by sending a ANT_SendBurstTransfer with data:
// Send Burst Data (2 packets)
UCHAR auth[8*2] = {0x44,0x04,0x03,0x01,0x07,0x89,0x18,0x00,
0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10,0x11};
ANT_SendBurstTransfer(USER_ANTCHANNEL, auth, 2);
I don't understand why it doesn't work. Can somebody point me what I did wrong? Thanks!!!