My Rabbit Core Module act as FTP server. I will upload file to it. How do I program to make the Rabbit Core Module receive the uploaded file and read the...
Hi Everyone, My program was working well and I needed to add some functions. After I successfuly compiled the program with no errors I tried to run it. No go!...
Hi All, Does DC 8.51 support the following #define operation #define A 1 #define B 2 #define C A | B The following test code gave incorrect results for( i =...
... Those results seem correct, given the order of precedence of the equality and bitwise-OR operators. For any value of <i>, you're evaluating: if ( i == 1 |...
... The solution to your problem is: #define C (A | B) It's ALWAYS a good idea to put a set of parenthesis around your defines when there are any operators in...
I am just trying out SHDesigns timerB.lib. It seems to be quite easy to use but with my simple test prog running on a 44Mhz RCM3365 I seem to be getting an...
If I define TIMER_DEBUG I see the following output : Timer B divisor=553, _timerb_scale=0, timeradiv=256, match=bf58 Timer Running at 100.007240 Rollover I am...
... What is the date of the lib? Should be 2/14/2007. There was a bug similar in a previous version. If latest, send me a sample and I'll try it. -- ... Rabbit...
Dear Scott I downloaded the library today so its has the correct date. I added the following printf to my my test prog: printf("freq_divider = %ld XTAL_FREQ =...
Dear Scott Putting this in the top of timerb.lib seems to do the trick #ifdef USE_TIMERA_PRESCALE #define _freq_divider (freq_divider >> 1) #else #define...
Dear Scott In posting a fix for my issue you have introduced a small typo in the lib which prevents complilation. The following line has two 'L's in the...
Dear Scott There still appears to be some quirk in the library when the USE_TIMERA_PRESCALE is in use. Using a larger period, ie TimerBInit(17500L,3), results...
Anyone else have issues with DHCP not recovering very well? My DHCP server died over the weekend, presumably after my lease ran out I lost all connectivity to...
... You'd have to check the RFCs on BOOTP and DHCP, but I'm pretty sure that's expected behavior. When the lease is up, it's up. If the client can't renew, it...
I am trying to use timerb.lib but it seems to have poor accuracy. I have written a simple test program using timerb.lib in which the user interrupt function...
... Tried it here on an RCM3750 and it was off by 0.3% The timer is accurate as it is based on the CPU crystal. The rtc is based on the 32khz clock, it is...
Dear Scott I tried another version this time using SEC_TIMER to time against. Thus I am using the same clock source that drives timerB. The result is an even...
Correct, that's the issue. When the DHCP Server comes back, the Rabbit remains unreachable. Unknowingly, i let this go on for days recently as the board...
... The SEC_TIMER runs off the RTC timer. That runs off the 32khz clock. -- ... Rabbit libs: http://www.shdesigns.org/rabbit/ today's fortune Hubbard's Law: ...
Dear Scott I having run the test again. This time I also timed against a stop watch. The rabbit RTC clock gave me the same result as my stop watch. If all...
Hi, I want to send an array of integer values (can be char as well, will convert if neccessary) to an HTML page to be used in the page to plot a graph using...
I am new to the Rabbit programming, but just got an RCM-4400W running as a data gathering device sending data over a wireless link to a laptop. In order to...