Ignore:
Timestamp:
06/08/11 17:19:46 (14 years ago)
Author:
weitzel
Message:
FTM: patch in LP interface to correct for swapped channels; change in FTUcontrol to fix first-board-bug
File:
1 edited

Legend:

Unmodified
Added
Removed
  • firmware/FTM/ftu_control/FTM_ftu_control.vhd

    r10740 r10929  
    733733        when PING_1 =>  -- wait one cycle for CRC calculation
    734734          enable_crc_from_FSM_sig <= '0';
    735           rec_reset_sig <= '1';
     735          --rec_reset_sig <= '1';
    736736          FTM_ftu_rs485_control_State <= PING_2;
    737737
     
    749749              tx_data_sig <= crc_sig;
    750750              tx_start_sig <= '1';
     751              rec_reset_sig <= '1';  -- new
    751752              FTM_ftu_rs485_control_State <= PING_2;
    752753            else
     
    924925        when RATES_1 =>  -- wait one cycle for CRC calculation
    925926          enable_crc_from_FSM_sig <= '0';
     927          --rec_reset_sig <= '1';  --new
    926928          crc_data_from_FSM_sig_cp <= crc_data_from_FSM_sig;
    927929          FTM_ftu_rs485_control_State <= RATES_2;
    928930
    929931        when RATES_2 =>  -- transmit byte by byte
     932          rec_reset_sig <= '0';  --new
    930933          if (tx_busy_sig = '0') then
    931934            if (frame_cnt < 27) then
     
    940943              tx_data_sig <= crc_sig;
    941944              tx_start_sig <= '1';
     945              rec_reset_sig <= '1';
    942946              FTM_ftu_rs485_control_State <= RATES_2;
    943947            else
Note: See TracChangeset for help on using the changeset viewer.