Hi, I made a small application using RCM3200 development board and Dynamic C 7.33 (I know it's old, but my company seem not to purchase the 8.0). I connected...
Thanks. I have not had a chance yet to try any of the suggestions. I ran into another problem and trying to figure that one out (will probaby post it)....
I have a string buffer that is 256 in size and it rolls over. when it comes to the end of that string, it just goes to the begining of it. Anyway, is there...
Hi, Usually the famous "Timeout while debugging" message is due to a bug in your code. Doble check all your lines (fortunatelly you said that the application...
Thanks for your input Lance! If you find out anything keep me posted! Regards, Michael ... from these ... DLL that ... access ... I am a ... interface ... talk...
I made a very basic program to test how fast I can handle interrupts, by simply using a counter chip to act as a clock. I feed 4.096 Mhz into the counter that...
Roman, Yeah, I have a 4.096 Mhz clock fed into an 8 bit counter that does the frequency division, to give me a good 8 khz for the FST/FSR signals. I have the...
Why does it read 50 bits? Aren't you transferring only 8 bits every time FS triggers the interrupt? Also, why do you need a second interrupt to send the data...
I need to run multiple devices off one SPI bus; ADC, DAC, E2Prom, SF1000, CAN device, etc. I currently have the ADC working fine, using SPIRead() in SPI.lib. ...
#define & #undef are compiler options. You cant make changes to your runtime executable. If you want to change the mode: WrPortI (SPI_ER, &SPI_ShER, 0x10);...
I have an application with a 69usec interrupt working fine. The interrupt routine is written in assembly and takes worst-case about 25usec. If you use more...
I assume that you are trying to parse an incoming data stream. If the buffer is being added to in interrupt then it could get more complex because things will...
I had it abritraily read 50 bits (array) for the following reason. Currently,I have the CODEC read when FS goes high, and it stops reading when FS goes low....
I've looked just about everywhere, the official rabbit forum and the manuals as well. I have the RCM3200 Dev Kit/Board and I have two RCM3200 Core Modules. I'm...
I managed to solve this problem. The problem was, the DC power supply I was using was not supplying enough current for both boards. Just enough for one,...
Has anybody controlled the ST200(www.tecel.com/st200) stepper motor driver board from Tecel? I would like to get some tips on controlling it with the Rabbit 2....
When compiling to ram, does DC8.51 always compile the bios? I thought the bios was only compiled every time, if you were compiling to flash? or at least thats...
... supply ... But ... the ... Modules. ... Master ... Core ... module ... solutions ... because ... that ... themselves. ... this, ... is ... into the ... ...
Hello, Just tried to use stdio redirection to print some debug data to port A and noticed that message like the following always printed: ARP: router_add...
Hi All Serial port D is used to send and receive data in interrupt mode. Serial port int is initialized using following routines: void init_interrupt() { ...
Hi, I've got a RCM2200 waiting for TCP connection: when the socket is estabilished, how can I know the IP address of the calling host? Thanks for answers, Aldo...
... Just out of curiousity, why are you replacing the interrupt routines that come with DC? Look in RS232.LIB. Basically, the standard setup uses interrupt...
Hi there ! Iīm trying to do a simple serial communication between RCM 3200 and PIC 16F874. The rabbitīs side is ok, but the picīs side is not. Is there sbdy...
Do you have the same ground refference in both systems? ... From: Erick Rodrigues de Sousa To: 'rabbit-semi@yahoogroups.com' Sent: Monday, May 03, 2004 1:32 PM...
Dear owner of user group, think that's correct when a guy send many times a virus to user group is better remove this guy. Just a ideia, thanks, Rafa....
Do you have the same ground refference in both systems? A: Yes. Actually, Iīm trying to do a simple port to port serial communication (RCM3200 (Serial port C)...
HI all, I need a 1500 bytes buffer. I donīt want to store it in root because I will run out of memory quickly. Is there a way to allocate such buffer in...
Use xalloc() to allocate a RAM buffer. ... root because I will run out of memory quickly. Is there a way to allocate such buffer in xmem?? I know I can use...