# # dyn_ctrl_driver.tcl # # Create a new driver create_driver dyn_ctrl_driver # Associate it with some hardware known as "dyn_ctrl" set_sw_property hw_class_name dyn_ctrl_hw # The version of this driver set_sw_property version 1.2 # This driver may be incompatible with versions of hardware less # than specified below. Updates to hardware and device drivers # rendering the driver incompatible with older versions of # hardware are noted with this property assignment. # # Multiple-Version compatibility was introduced in version 7.1; # prior versions are therefore excluded. # set_sw_property min_compatible_hw_version 1.0 # Initialize the driver in alt_sys_init() set_sw_property auto_initialize true # Location in generated BSP that above sources will be copied into # set_sw_property bsp_subdirectory drivers # # Source file listings... # # C/C++ source files add_sw_property c_source HAL/src/dyn_ctrl.c # Include files add_sw_property include_source HAL/inc/dyn_ctrl.h add_sw_property include_source inc/dyn_ctrl_regs.h # This driver supports HAL & UCOSII BSP (OS) types add_sw_property supported_bsp_type HAL add_sw_property supported_bsp_type UCOSII # End of file