Hi,
I've been developing a windows based piece of software recieving from ANT+ sports equipment (using the usb stick that came with my garmin FR60). I'm now attempting to port it to an embedded .net micro framework based device (starting with a fez panda II).
I've wired the AP281M41B module to the Com2, and setup it with UART = 4800 and handshaking in Async mode with BR1,2,3, to ground to set the slowest mode.
SerialPort UART = new SerialPort("COM2", 4800);
UART.Handshake = Handshake.RequestToSend;
I reset the module by asserting the reset line low, then high, then low, then SRDY to to high, and SMSRDY to low. Then UART out to send the Reset command, then assign channel, then request channel status. This is where I'm getting nothing back.
I've attached the test library so you can see what I'm doing.
Since I'm getting nothing back when I request status I'm suspecting something is wrong and don't want to impement the rest of the setup commands if I'm getting nothing at this point.
Any suggestions?