***************************************************************** Dynamic C for Rabbit Release Notes ***************************************************************** ***************************************************************** VERSION 10.72 NEW FEATURES - FCC-labeled versions of RCM6600W family boards are locked to the Americas region code. - The following new options are available in the command line Rabbit Field Utility (Utilities\clRFU.exe): -i pathname Specify application binary image file, -i BinPath -si Print formatted contents of System ID block -ma Print formatted MAC address -bi Print Board ID --boot-flashtype flash_type Specify flash_type as either parallel or serial --boot-memorywidth memory_width Specify memory_width (in bits) as either 8 or 16 --boot-ram-selectenable mb0cr_value Specify mb0cr_value in the range [0,7] /CS0:3 in bits 1:0, /OE0:1 (== /WE0:1) in bit 2 Previously, the command line RFU required that its first parameter must be the path name of the binary image to load to the Rabbit target board. Now, when the new "-i pathname" option is not specified, it is possible to check Rabbit board information via the new "-si" and / or "-ma" and / or "-bi" options without loading a binary image to the Rabbit target board. - The Rabbit Field Utility, after successfully loading a binary image onto a Rabbit target board, now automatically starts program execution. RabbitBios.c has been updated to provide the following three behavior options after the RFU has started program execution: 1) Default behavior. When neither RFU_BIN_RUN_IMMEDIATELY nor RFU_BIN_WAIT_FOR_RUN_MODE are defined, a BIN program image successfully loaded by RFU 4.72 or later will run BIOS code only and then will wait in an idle loop until a hardware reset occurs. Following a hardware reset and with the programming cable disconnected, BIOS code and user code will execute as usual. This mode of operation most closely emulates the behavior of RFU versions prior to 4.72. It can also be useful in test fixture code, for example, where a test fixture can control at least one of the SMODEx levels as well as the RESET level, and manual disconnection of the programming cable is inconvenient or undesirable. 2) When RFU_BIN_RUN_IMMEDIATELY is defined in Dynamic C's Project Options' Defines tab, a BIN program image successfully loaded by RFU 4.72 or later will run both BIOS code and user code immediately after loading, with the programming cable still connected. With the programming cable disconnected, BIOS code and user code will execute as usual. This mode of operation is enforced when Dynamic C's debug kernel is enabled. It can also be useful in test fixture code, for example, where a test fixture can not or does not control the SMODEx levels and manual disconnection of the programming cable is inconvenient or undesirable. 3) When RFU_BIN_WAIT_FOR_RUN_MODE is defined in Dynamic C's Project Options' Defines tab, a BIN program image successfully loaded by RFU 4.72 or later will run BIOS code and then pause in an idle loop, waiting for the programming cable to be disconnected. As soon as the programming cable is disconnected, user code will begin to execute. With the programming cable disconnected, BIOS code and user code will execute as usual. This mode of operation can be useful in test fixture code, for example, where a test fixture can control at least one of the SMODEx levels and manual disconnection of the programming cable is inconvenient or undesirable. BUG FIXES Compiler Bugs GUI Bugs Library Bugs - Defect #41708. Prevented possible program hang and possible false-positive file transfer success result in ftp_client.lib. - Defect #41912. When HTTP_CUSTOM_HEADERS is defined and used, an incorrect buffer offset calculation results in corrupted HTTP header buffer content. - Defect #42073. The digOutConfig_H() function in BLxS2xx.LIB now returns the expected 0 result on success. - Defect #43173. Dynamic C's run time error reporting now consistently reports the return address on the stack when exception() is called. OTHER FUNCTIONAL CHANGES - The Lib\Rabbit4000\NandFlash\nflash.lib driver library has been updated with support for Micron/Numonyx/ST NANDxxxW3A nand flash devices. Previously supported nand flash devices, used on RCM4000 and RCM4050 boards, have been discontinued and are no longer available. As of 01-Dec-2012, new production RCM4000 and RCM4050 boards will have a Micron/Numonyx/ST NAND256W3A (32MB) nand flash device installed. Custom applications which use nand flash, whether based on RCM4000, RCM4050 boards or a custom nand flash board design, should be recompiled using Dynamic C 10.72 in order to support the new, increased selection of small-block nand flash devices. - The EXCEPTION(x) macro is no longer used in any standard Dynamic C code and is now deprecated. Please refer to the associated deprecation comments in ERRORS.LIB for more information. - iDigi access via a PPP serial port can now be hosted on an alternate parallel port by defining one of IDIGI_PPP_USE_PORTD or IDIGI_PPP_USE_PORTE before #use idigi.lib. ***************************************************************** VERSION 10.70 NEW FEATURES - New XBee/ZigBee driver. A new XBee/ZigBee driver and standard sample programs are provided. See Samples\XBee\ReadMe.txt and the latest version of "Dynamic C - An Introduction To ZigBee" for more information. - MiniCore RCM6600W and RCM6650W support. The MiniCore RCM6600W family supports both WiFi (on-core) and Ethernet (off-core) network interfaces. The MiniCore RCM6600W has a 1 MB serial boot flash while the the RCM6650W has a 4MB serial boot flash. Using the API from sflash.lib, on the RCM6650W up to 3MB is available for data storage. See sample programs in Samples\RCM6600W. - Custom definition of ORG_PLACE_USERDATA_IN_RAMx allows an application to relocate the optional user data memory org into a specified RAM device. To specify the user data memory org's RAM device, add: ORG_PLACE_USERDATA_IN_RAMx = RAMx into Dynamic C's Project Options' Defines tab, where integer RAMx is one of 1, 2, or 3, as appropriate to the application's Rabbit board type and compile mode. If the user specifies an in-range but non-existent RAMx device then a rather cryptic error message will result. For example, specifying that the user data buffer should be relocated into RAM2 when compiling to an RCM4000 results in the following error message: "userdata_buff: This reference has no corresponding definition." For applications which utilize the optional user data memory org, Dynamic C's Project Options' Defines tab is a convenient spot to set the required size. For example, adding: _SOS_USERDATA = 0x1000 specifies a 0x1000 byte (4KB) user data memory org. BUG FIXES Compiler Bugs GUI Bugs Library Bugs - Defect #34603. DMA functionality in SERLINK.LIB is updated to support Rabbit 5000 and 6000 CPUs. - Defect #37681. TAT11R and TAT12R internal register addresses are now conditionally defined in SYSIODEFS.LIB for Rabbit 6000 CPUs. - Defect #38379. DMA functionality in RS232.LIB is updated to support Rabbit 5000 and 6000 CPUs. - Defect #38777. When uC/OS-II is used, SERLINK.LIB's ISR now prevents task switching while interrupt processing continues with reenabled interrupts. - Defect #39302. In modbus_master.lib, custom _initMBMpacket() functionality is restored for TCP-only Modbus master boards. A library function stub is now provided, along with function help. - Defect #39461. In DMAETH100.LIB's internal *._havelink() function, errant restart of autonegotiation is prevented when autonegotiation is disabled. - Defect #39750. All memory orgs located in a battery-backable SRAM are now properly identified in memory_layout.lib as being BB, with regard to both xalloc usage and in the program's MAP file. In particular, the RCM6750/60's battery-backable external SRAM's memory org is now marked as BB. - Defect #39751. On RCM56xxW boards, the FAT file system buffers have been fixed to the top of the battery-backable RAM org. This prevents other BB memory orgs, such as the optional user data org, from changing the location of the FAT buffers. - Defect #40496. In UCOS2.LIB, a number of global variables were declared inside a module header, causing data storage generation at "#use ucos2.lib" library scan time. - Defect #41149. The informational error_message() and _error_message() functions in errors.lib have been fixed to prevent a potential hang problem when an error number is specified for which no error message exists. - Defect #41653. The ROOT_SIZE_4K macro value must be unsigned, else values greater than 7 will cause a signed (negative) memory org size problem. The check in StdBios.c now enforces unsigned ROOT_SIZE_4K values greater than 7. OTHER FUNCTIONAL CHANGES - Dynamic C's original XBee support libraries (xbee_api.lib, etc.) and samples are obsolete and are removed from the Dynamic C 10.70 release. Users are encouraged to port legacy XBee applications to the new XBee/ZigBee driver, however, where porting is not practical the application should remain on Dynamic C 10.66 or prior version. - The DMAETH100_AUTO_NEG_TIMEOUT macro is deprecated. Rabbit 5000 or 6000 built-in Ethernet applications which use a custom definition for this macro should instead define one or both of the DMAETH100_LINKFAIL_TIMEOUT or DMAETH100_LINKDOWN_TIMEOUT macros. The *LINKFAIL* macro value determines the PHY powered- up time out for link-failed detection. The *LINKDOWN* macro value determines the PHY powered-down idle time-out for no- connect Ethernet current reduction. The default value for each of the *LINK* macros is 4000 milliseconds, which results in a 50% powered-up vs. powered-down duty cycle when e.g. Ethernet is not connected. *****************************************************************