Skip to content

Commit

Permalink
Minor changes to KSZ8851 initialization based on V1.5 of Step-by-Step…
Browse files Browse the repository at this point in the history
… guide
  • Loading branch information
pkazanzides committed Oct 16, 2019
1 parent b68f510 commit f18d5b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FPGA1394_QLA/Verilog/EthernetIO.v
Expand Up @@ -3,7 +3,7 @@

/*******************************************************************************
*
* Copyright(C) 2014-2016 ERC CISST, Johns Hopkins University.
* Copyright(C) 2014-2019 ERC CISST, Johns Hopkins University.
*
* This module implements the higher-level Ethernet I/O, which interfaces
* to the KSZ8851 MAC/PHY chip.
Expand Down Expand Up @@ -542,7 +542,7 @@ always @(posedge sysclk or negedge reset) begin
begin
cmdReq <= 1;
RegAddr <= `ETH_ADDR_TXCR;
WriteData <= 16'h01EE; // Enable QMU transmit flow control, CRC, and padding
WriteData <= 16'h00EE; // Enable QMU transmit flow control, CRC, and padding
state <= ST_WAIT_ACK;
nextState <= ST_INIT_REG_RXFDPR;
end
Expand Down Expand Up @@ -587,7 +587,7 @@ always @(posedge sysclk or negedge reset) begin
begin
cmdReq <= 1;
RegAddr <= `ETH_ADDR_RXCR2;
WriteData <= 16'h0016;
WriteData <= 16'h001C; // Enable UDP checksums; pass packets with 0 checksum
state <= ST_WAIT_ACK;
nextState <= ST_INIT_MULTICAST;
end
Expand Down

0 comments on commit f18d5b3

Please sign in to comment.