Hello,
For a custom ANT communication I have to use the channel period of 1Hz.
According to the chapter 5.2.4 "Channel Period" of the ANT Message Protocol and Usage document I have to set the channel period value to 32768 (32768/1 = 32768)
The Android API provides the following method to set this channel period value:
com.dsi.ant.AntInterface.ANTSetChannelPeriod(byte channelNumber, short channelPeriod)
However the Java data type range of "short" does only support –2^15 - 2^15 – 1 (–32768...32767)
What value do I have to set to achieve 1Hz?
Thank you in advance.