... Has anyone actually succeeded? All related info I've seen so far seem to indicate that the mess that DC is, after fiddling with file naming and things, you...
The editor at least runs in WINE, not sure what if any useable code is produced. Yes, secondly I could see where loading it via serial would be an issue. I...
There's a semiphore which the wifi AD driver monitors that will prevent it from using the SPI interface until released. _sf_spi_busy // Flag usage is located...
I'm new to the Rabbit platform and Dynamic C, and am having some problems compiling my first program. The first few lines of my .lib file are: /*** BeginHeader...
... Looks like structOperatingParameters is not defined before reading the beginheader section. Where is it defined? It should be within a Beginheader block in...
I suspect the answer to this question is also the ordering of statments inside BeginHeader/EndHeader, but I can't figure it out. I've written a stupid-simple...
testEnum is not a type in C. You need to read a C programming book. In C all an enum does is give names to ints. Change "testEnum c" to "int c" and it will...
... You probably need to change the enum as a typedef: typedef enum testEnum { value_one, value_two, value_three } testEnum; or change your struct to: typedef...
... My earlier post about the solution I'd found was wrong; Scott's suggestion of changing the struct definition appears to be the correct solution. Steve, my...
Hi, i´m using ftp with fs2 in RCM3700, i need to list files in fs using ls with filters like *.txt or hell?.txt you know. Is any library available for that, i...
Hello I need to debug a controller and it would be very usefull for me to get the code that was written on it. Is there any way I can do this? Also, I know the...
... You can try connecting the DIAG connector and use a serial terminal emulator like Hyperterminal (no handshaking). However, unless the code was compiled to...
I recently bought an RCM5700 dev kit, and have been anxiously looking forward to using it with the Softools WinIDE, which Z-World used to advertise rather...
Hi I am using BL2600 for my projects. I need to communicate with a PLC (which is a Modbus Slave). So I am trying to program my BL2600 as a Modbus Master ...
Hi Does anybody know how to use the function MBM_WriteCoils ( int MB_address, int StartCoilNbr, int NbrCoils, int CoilStates ) which is in Modbus_Master.lib ...
Hello The state is probably the value you want to write. since it is int you probably can't write more than 16 bits once. I am not sure of that anyway :) ...
Couldn't have said it better myself! -Pete ... From: rabbit-semi@yahoogroups.com [mailto:rabbit-semi@yahoogroups.com] On Behalf Of jwcrens Sent: Friday, March...
Hi, thank you for this tip. I've tried it and it works fine (I've performed a test with maximum needed number of frames with maximum period). Before your tip...
Hi, I'm using an RCM3365 that has 512k Program execution RAM and 512k Battery-backup RAM. Here is the situation I encountered: When I set my program to be...
... Because DC has very poor memory management. They tend to leave 256k mapped to flash just so they can read the ID and user block. There is no need for this,...
I think it may be working now, and the problem has more to do with the DNS server than the library. We use OpenDNS for ease in setting these things up and...
This would depend somewhat on which version of rabbit's modbus you are using. The recent one appears to only write a single 8-bit state. The earlier version...
Dear Everyone, I used to work with an RCM3700. If I removed the Ethernet cable, then reconnected it, the module instantly recognized it, blinking the green...
Gusztáv Győri
directsl@...
Mar 11, 2009 12:40 pm
38691
Hi all, I would really appreciate some light being shed on my current problem. My scenario; To communicate via TCP/IP packets between: OP7200 RCM2250 (labelled...
Ari Barbakos
abarbakos@...
Mar 13, 2009 8:25 am
38692
Hi All, I've purchased a Rabbit Semi GSM/GPRS kit and am trying to run the example program provided with the kit. I purchsed an ATT 3G communication contract...
Hello, in my designs I often use a standard PS2 keyboard with an RCM4100. I found the PS2KEYBOARD.LIB in the file section of this group. The library works but...