Changeset 10418 for firmware/FTM/ftu_control/FTM_ftu_rs485_interpreter.vhd
- Timestamp:
- 04/20/11 12:37:39 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
firmware/FTM/ftu_control/FTM_ftu_rs485_interpreter.vhd
r10232 r10418 47 47 FTU_enable_array : OUT FTU_enable_array_type := ((others => '0'), (others => '0'), (others => '0'), (others => '0')); 48 48 FTU_rate_array : OUT FTU_rate_array_type := ((others => '0'), (others => '0'), (others => '0'), (others => '0'), (others => '0')); 49 FTU_overflow : OUT std_logic_vector(7 downto 0) := (others => '0'); 49 50 FTU_prescaling : OUT std_logic_vector(7 downto 0) := (others => '0'); 50 51 FTU_crc_error_cnt : OUT std_logic_vector(7 downto 0) := (others => '0'); … … 144 145 data_block(199 downto 168) 145 146 ); 147 FTU_overflow <= data_block(207 downto 200); 146 148 FTU_crc_error_cnt <= data_block(215 downto 208); 147 149 FTM_ftu_rs485_interpreter_State <= WAIT_FOR_DATA; … … 165 167 elsif (data_block(39 downto 32) = "00000111") then -- read counter mode 166 168 FTU_prescaling <= data_block(47 downto 40); 169 FTU_overflow <= data_block(55 downto 48); 167 170 FTM_ftu_rs485_interpreter_State <= WAIT_FOR_DATA; 168 171 elsif (data_block(39 downto 32) = "00000101") then -- ping pong
Note:
See TracChangeset
for help on using the changeset viewer.