RabbitCore RCM2300
User's Manual
PREV NEXT INDEX



3. Software Reference

Dynamic C Premier is an integrated development system for writing embedded software. It runs on an IBM-compatible PC and is designed for use with Z-World controllers and other controllers based on the Rabbit microprocessor. Chapter 3 provides the libraries, function calls, and sample programs related to the RCM2300.

3.1 More About Dynamic C

Dynamic C has been in use worldwide since 1989. It is specially designed for programming embedded systems, and features quick compile and interactive debugging in the real environment. A complete reference guide to Dynamic C is contained in the Dynamic C Premier User's Manual.

Dynamic C for Rabbit 2000TM processors uses the standard Rabbit programming interface. This is a 10-pin connector that connects to the Rabbit 2000 serial port A. It is possible to reset and cold-boot a Rabbit processor via the programming port. No software needs to be present in the target system. More details are available in the Rabbit 2000 Microprocessor User's Manual.

Dynamic C cold-boots the target system and compiles the BIOS. The BIOS is a basic program of a few thousand bytes in length that provides the debugging and communication facilities that Dynamic C needs. Once the BIOS has been compiled, the user can compile his own program and test it. If the user program stops running, a new cold boot and BIOS compile can be done at any time.

Dynamic C does not use include files, rather it has libraries that are used for the same purpose, that is, to supply functions and function prototypes to programs before they are compiled.

Dynamic C supports assembly language, either as separate functions or as fragments embedded in C programs. Interrupt routines may be written in Dynamic C or in assembly language.

3.1.1 Operating System Framework

Dynamic C does not include an operating system in the usual sense of a complex software system that is resident in memory. The user has complete control of what is loaded as a part of his program, other than those routines that support loading and debugging (which are inactive at embedded run time). However, certain routines are very basic and normally should always be present and active.

3.1.2 Using Dynamic C

You have a choice of doing your software development in the flash memory or in the static RAM. There are 256K bytes of flash memory and 128K bytes of SRAM. The advantage of working in RAM is to save wear on the flash, which is limited to about 100,000 writes.

NOTE Note that an application can be developed in RAM, but cannot run standalone from RAM after the programming cable is disconnected. All applications can only run from flash memory.
NOTE Do not depend on the flash memory sector size or type. Due to the volatility of the flash memory market, the RCM2300 and Dynamic C were designed to accommodate flash devices with various sector sizes.

The disadvantage of using flash memory when debugging a program is that interrupts must be disabled for approximately 5 ms to 20 ms whenever a break point is set in the program. This can crash fast interrupt routines that are running while you stop at a break point or single-step the program.

Flash memory or RAM is selected with the Dynamic C Options > Compiler menu.

3.2 Dynamic C Libraries

With Dynamic C running, click File > Open, and select Lib. The following list of Dynamic C libraries will be displayed.


There is no unique library that is specific to the RCM2300. The functions in the above libraries are described in the Dynamic C Premier User's Manual.

3.2.1 I/O

The RCM2300 was designed to interface with other systems, and so there are no drivers written specifically for the I/O. The general Dynamic C read and write functions allow you to customize the parallel I/O to meet your specific needs. For example, use


WrPortI(PEDDR, &PEDDRShadow, 0x00);

to set all the Port E bits as inputs, or use


WrPortI(PEDDR, &PEDDRShadow, 0xFF);

to set all the Port E bits as outputs.

The sample programs in the Dynamic C SAMPLES/RCM2300 directory provide further examples.

These functions are provided for convenience, not speed. User code should be written in assembly language when speed is important.

3.2.2 Serial Communication Drivers

The Prototyping Board has room for an RS-232 chip. Dynamic C has two libraries to support serial communication: RS232.LIB provides a set of circular-buffer-based functions, and PACKET.LIB provides packet-based support. Packets can be delimited by time gap, 9th bit detection, or special-character detection.

Both the packet-based and the circular-buffer-based routines are available in blocking and nonblocking (cofunction) flavors. See the Dynamic C Premier User's Manual and Technical Note 213, Rabbit 2000 Serial Port Software, for more details on serial communication.

3.3 Sample Programs

Sample programs are provided in the Dynamic C Samples folder, which is shown below.


The various folders contain specific sample programs that illustrate the use of the corresponding Dynamic C libraries. For example, the sample program PONG.C demonstrates the output to the Dynamic C STDIO window.

The sample programs in the Dynamic C SAMPLES/RCM2300 directory demonstrate the basic operation of the RCM2300.


Follow the instructions included with the sample program to connect the RCM2300 and the other hardware identified in the instructions.

To run a sample program, open it with the File menu (if it is not still open), compile it using the Compile menu, and then run it by selecting Run in the Run menu. The RCM2300 must be in Program Mode (see Section 2.4, "Programming Cable") and must be connected to a PC using the programming cable.

More complete information on Dynamic C is provided in the Dynamic C Premier User's Manual.

3.4 Upgrading Dynamic C

Dynamic C patches that focus on bug fixes are available from time to time. Check the Web sites

or

for the latest patches, workarounds, and bug fixes.

The default installation of a patch or bug fix is to install the file in a directory (folder) different from that of the original Dynamic C installation. Z-World recommends using a different directory so that you can verify the operation of the patch without overwriting the existing Dynamic C installation. If you have made any changes to the BIOS or to libraries, or if you have programs in the old directory (folder), make these same changes to the BIOS or libraries in the new directory containing the patch. Do not simply copy over an entire file since you may overwrite a bug fix; of course, you may copy over any programs you have written. Once you are sure the new patch works entirely to your satisfaction, you may retire the existing installation, but keep it available to handle legacy applications.

3.4.1 Upgrades

A special edition of Dynamic C, Dynamic C SE, is included on the CD that comes with the RCM2300 Development Kit, and has been customized with all the libraries and features needed to develop and run an application on the RabbitCore RCM2300.

More advanced users who may need upgrades and additional capabilities for other Z-World products in the future are encouraged to consider the standard edition of Dynamic C Premier, which Z-World plans to fully support with upgrades now and into the future.


Rabbit Semiconductor
http://www.rabbitsemiconductor.com
Voice: (530) 757-8400
FAX: (530) 757-8402
sales@rabbitsemiconductor.com
PREV NEXT INDEX