Hi Jean,
10BASE-T FPGA is very interesting.
Are you able to advise how can I send out the packet faster? I have tried to modify the following codes but seems like my pc can't detect or discarded the packets if the count value is reduced.
//////////////////////////////////////////////////////////////////////
// sends a packet roughly every second
reg [23:0] counter; always @(posedge clk20) counter<=counter+1;
reg StartSending; always @(posedge clk20) StartSending<=&counter;
If I need to send out the packet in ~1ms intervals, how should I do it. Please help to advise.
regards,
Dave