Search found 4 matches

by kidproquo
Thu Oct 14, 2010 11:46 pm
Forum: NetBurner Software
Topic: CAN FIFO CB34EX
Replies: 9
Views: 7169

Re: CAN FIFO CB34EX

Thanks a lot! That was very well explained. Much appreciated.
by kidproquo
Wed Oct 13, 2010 7:16 am
Forum: NetBurner Software
Topic: CAN FIFO CB34EX
Replies: 9
Views: 7169

Re: CAN FIFO CB34EX

Steve, That's another approach that I am considering. My only question in that case is wouldn't I need synchronization? What if the main loop is writing to the variable right when I am reading it in the Ajax callback? Will the read block automatically? I think I will need to look into Chapter 15 (Pr...
by kidproquo
Tue Oct 12, 2010 6:22 pm
Forum: NetBurner Software
Topic: CAN FIFO CB34EX
Replies: 9
Views: 7169

Re: CAN FIFO CB34EX

Larry, Paul, thanks for the replies. So, if I initialize with CanInit( 250000, 0/* Mask value of 0 receives everything */, 4 ) , all messages should be received by the FIFO when I do this int chan1 = RegisterCanRxFifo( NormToNbId( 0x123 ), &fifo ); . What happens to the FIFO if the CanRxMessage ...
by kidproquo
Tue Oct 12, 2010 11:28 am
Forum: NetBurner Software
Topic: CAN FIFO CB34EX
Replies: 9
Views: 7169

CAN FIFO CB34EX

Hello Experts, I am trying to use the CB34EX as a remote CANBUS monitor. I have looked at the CAN Serial example and have successfully ran it on the hardware. I am trying to adapt it to work with Ajax requests by putting the CAN Serial code in the Ajax callback function. Here's the code inside the A...