Changeset 10929 for firmware/FTM/ftu_control
- Timestamp:
- 06/08/11 17:19:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
firmware/FTM/ftu_control/FTM_ftu_control.vhd
r10740 r10929 733 733 when PING_1 => -- wait one cycle for CRC calculation 734 734 enable_crc_from_FSM_sig <= '0'; 735 rec_reset_sig <= '1';735 --rec_reset_sig <= '1'; 736 736 FTM_ftu_rs485_control_State <= PING_2; 737 737 … … 749 749 tx_data_sig <= crc_sig; 750 750 tx_start_sig <= '1'; 751 rec_reset_sig <= '1'; -- new 751 752 FTM_ftu_rs485_control_State <= PING_2; 752 753 else … … 924 925 when RATES_1 => -- wait one cycle for CRC calculation 925 926 enable_crc_from_FSM_sig <= '0'; 927 --rec_reset_sig <= '1'; --new 926 928 crc_data_from_FSM_sig_cp <= crc_data_from_FSM_sig; 927 929 FTM_ftu_rs485_control_State <= RATES_2; 928 930 929 931 when RATES_2 => -- transmit byte by byte 932 rec_reset_sig <= '0'; --new 930 933 if (tx_busy_sig = '0') then 931 934 if (frame_cnt < 27) then … … 940 943 tx_data_sig <= crc_sig; 941 944 tx_start_sig <= '1'; 945 rec_reset_sig <= '1'; 942 946 FTM_ftu_rs485_control_State <= RATES_2; 943 947 else
Note:
See TracChangeset
for help on using the changeset viewer.