S
server
Guest
message unavailable
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ripI\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
ripI\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
ripI\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
2nd thisI\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
ripI\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
onsdag den 5. april 2000 kl. 09.00.00 UTC+2 skrev Ron:
I\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
rip
onsdag den 5. april 2000 kl. 09.00.00 UTC+2 skrev Ron:
I\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
rip
On 09/11/2021 14:14, Vincent Li wrote:
onsdag den 5. april 2000 kl. 09.00.00 UTC+2 skrev Ron:
I\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
rip
Do you really mean checksum, or CRC?
Checksum is easy to understand, CRC less so.
I confess it\'s a long time since I used/looked up first principles to
generate CRCs and use this website:
https://www.easics.com/crctool/
On Wednesday, November 10, 2021 at 12:39:22 PM UTC-4, Mike Perkins
wrote:
On 09/11/2021 14:14, Vincent Li wrote:
onsdag den 5. april 2000 kl. 09.00.00 UTC+2 skrev Ron:
I\'m looking for checksum implementation in VHDL (or at least
the basic rules to build one). Regards Ron
rip
Do you really mean checksum, or CRC?
Checksum is easy to understand, CRC less so.
I confess it\'s a long time since I used/looked up first principles
to generate CRCs and use this website:
https://www.easics.com/crctool/
The only hard part to CRC is understanding the nomenclature. There
are several options for computing CRCs based on polarity and
direction. Specifying this is not consistent and often it is assumed
that you know the \"standard\". With the combinations it can be very
hard to get it right and be able to verify that. So by all means
make sure you verify your results in the simplest medium you can
before proceeding to anything more complex like coding.
2nd thisI\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
2nd thisI\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
On 09/11/2021 14:14, Vincent Li wrote:
onsdag den 5. april 2000 kl. 09.00.00 UTC+2 skrev Ron:
I\'m looking for checksum implementation in VHDL (or at least the basic rules
to build one).
Regards
Ron
rip
Do you really mean checksum, or CRC?
Checksum is easy to understand, CRC less so.
I confess it\'s a long time since I used/looked up first principles to
generate CRCs and use this website:
https://www.easics.com/crctool/
What is the correct way to handle a PCIE request to a slow device?
I have a xilinx spartan 6 PCIe using Integrated Block for PCI Express.
The BAR memory map is decoded and some addresses map to fast ram, or local registers and these work OK,
but some addresses map to slow devices.. like I2C or internal processes that need a few cycles to process before they can produce valid data to be returned to the PCI bus.
Is there a way to tell the PCI bus to wait, or retry..?
thanks
What is the correct way to handle a PCIE request to a slow device?
I have a xilinx spartan 6 PCIe using Integrated Block for PCI Express.
The BAR memory map is decoded and some addresses map to fast ram, or local registers and these work OK,
but some addresses map to slow devices.. like I2C or internal processes that need a few cycles to process before they can produce valid data to be returned to the PCI bus.
Is there a way to tell the PCI bus to wait, or retry..?
thanks
On Monday, October 27, 2014 at 11:05:32 AM UTC-7, david....@gmail.com
wrote:
What is the correct way to handle a PCIE request to a slow device?
I have a xilinx spartan 6 PCIe using Integrated Block for PCI
Express.
The BAR memory map is decoded and some addresses map to fast ram,
or local registers and these work OK, but some addresses map to
slow devices.. like I2C or internal processes that need a few
cycles to process before they can produce valid data to be returned
to the PCI bus.
Is there a way to tell the PCI bus to wait, or retry..?
thanks
Just in case this is what you are trying to so: stalling your whole
system and all other PCIe accesses to wait for an i2c read should
never be the solution to anything. You send your completion whenever
it\'s ready. If it takes you longer than the spec to complete then you
need to initiate the read in some other way (earlier), check for
ready and only then issue the read you can complete on time.
On Monday, October 27, 2014 at 11:05:32 AM UTC-7, david....@gmail.com
wrote:
What is the correct way to handle a PCIE request to a slow device?
I have a xilinx spartan 6 PCIe using Integrated Block for PCI
Express.
The BAR memory map is decoded and some addresses map to fast ram,
or local registers and these work OK, but some addresses map to
slow devices.. like I2C or internal processes that need a few
cycles to process before they can produce valid data to be returned
to the PCI bus.
Is there a way to tell the PCI bus to wait, or retry..?
thanks
Just in case this is what you are trying to so: stalling your whole
system and all other PCIe accesses to wait for an i2c read should
never be the solution to anything. You send your completion whenever
it\'s ready. If it takes you longer than the spec to complete then you
need to initiate the read in some other way (earlier), check for
ready and only then issue the read you can complete on time.
On 09/03/2021 03:52, Luis Benites wrote:
On Monday, October 27, 2014 at 11:05:32 AM UTC-7, david....@gmail.com
wrote:
What is the correct way to handle a PCIE request to a slow device?
I have a xilinx spartan 6 PCIe using Integrated Block for PCI
Express.
The BAR memory map is decoded and some addresses map to fast ram,
or local registers and these work OK, but some addresses map to
slow devices.. like I2C or internal processes that need a few
cycles to process before they can produce valid data to be returned
to the PCI bus.
Is there a way to tell the PCI bus to wait, or retry..?
thanks
Just in case this is what you are trying to so: stalling your whole
system and all other PCIe accesses to wait for an i2c read should
never be the solution to anything. You send your completion whenever
it\'s ready. If it takes you longer than the spec to complete then you
need to initiate the read in some other way (earlier), check for
ready and only then issue the read you can complete on time.
Please look at the date of the post you are replying to. Do you think
someone will have been waiting over six years for an answer to a Usenet
post? It\'s nice that you are trying to help, of course.