| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years |
| seen | 2 hours ago | |
| stats | profile views | 62 |
I really ought to have more written here...
|
1d |
awarded | Yearling |
|
Apr 7 |
awarded | Popular Question |
|
Mar 29 |
comment |
Android: Alternative GIF loader? Thanks for that solution! It's nice to finally get some sort of closure on this question. |
|
Mar 29 |
accepted | Android: Alternative GIF loader? |
|
Mar 28 |
comment |
Android: Alternative GIF loader? I suspect people just write around it anymore. It's too bad really.... the bug isn't fixed and I moved on from that need. |
|
Mar 26 |
awarded | Nice Question |
|
Mar 22 |
comment |
VHDL UCF - how to define a constraint that has no pin? It's turning out to be tricky... I've created an interface with an intermediate 4-bit signal that I'm port mapping to the 4-bit internal signal, and I'm directly assigning the top two bits of it to the 2-bit final output signal (ignoring the other two intermediate bits). It builds and works but I get "Node <foo> of sequential type is unconnected in block <bar>" warnings for those unused intermediate bits (though at least I'm NOT getting the extra randomly-assigned output pins now!) The warnings appear benign but I want to understand them and hopefully eliminate them neatly if possible. |
|
Mar 21 |
comment |
VHDL UCF - how to define a constraint that has no pin? @Brian - It sounds pretty simple, I just wasn't sure if it was a special type of module with a special syntax or just an interface-type layer. Thanks for the helpful suggestion! |
|
Mar 21 |
comment |
VHDL UCF - how to define a constraint that has no pin? @Martin - And thanks for the answer. Now to figure out the best way to create a wrapper (if it's more than just another module that acts as an interface). The following is where I later read about the lack of a clear warning/error for this - turns out you were on that thread too! electronics.stackexchange.com/questions/26527/… |
|
Mar 21 |
accepted | VHDL UCF - how to define a constraint that has no pin? |
|
Mar 21 |
comment |
VHDL UCF - how to define a constraint that has no pin? [Upvote question if educational] Too bad you can't pull unlocated I/O up or down within the UCF (since it's the actual map between the device itself and the underlying VHDL it seemed like a logical place to tie up such loose ends). The map report doesn't have pin numbers, but the .pad report does show that the "UNLOCATED" pads are indeed routed randomly (strangely, with no clear warning/error). And trying to connect everything unused to one pad causes "Pack:2811 - Directed packing was unable to obey the user design". Just found another similar Q&A: fpgarelated.com/usenet/fpga/show/106417-1.php |
|
Mar 20 |
asked | VHDL UCF - how to define a constraint that has no pin? |
|
Mar 8 |
comment |
VHDL: creating a very slow clock pulse based on a very fast clock I'm thinking that LOCAL_CLK_SLOW is the gated clock here... though why the counter variable doesn't have this effect is still unclear to me. |
|
Mar 6 |
comment |
VHDL: creating a very slow clock pulse based on a very fast clock I've updated my question with "before and after" code (I tested both forms and only the "before" one triggers this error... though obviously it has an additional storage bit in it as you'll see). It's a little academic at this point but it'd be very nice to understand why what I did in the first place was "wrong" (all I can figure is it's got to do with either having no "else" or the extra bit being toggled or a combination of both, all other things being equal throughout.) |
|
Mar 6 |
revised |
VHDL: creating a very slow clock pulse based on a very fast clock added 8 characters in body |
|
Mar 6 |
revised |
VHDL: creating a very slow clock pulse based on a very fast clock Cleaner examples |
|
Mar 6 |
revised |
VHDL: creating a very slow clock pulse based on a very fast clock added 38 characters in body |
|
Mar 6 |
accepted | VHDL: creating a very slow clock pulse based on a very fast clock |
|
Mar 6 |
revised |
VHDL: creating a very slow clock pulse based on a very fast clock Illumination! |
|
Mar 6 |
comment |
VHDL: creating a very slow clock pulse based on a very fast clock Intriguing... that's pretty much what I was doing already, though I was using logic to toggle a local std_logic bit when it reached the required value (no "else" clause) and then assign it to an output (the 50% duty cycle thing was no longer required anyway). Taking that toggle out and then adding an else clause (the equivalent to your "clk_enable_200kHz <= '0';" above) got rid of the warning! So I had the right idea except for my attempt to get a 50% duty cycle out of it that way... thus I wonder, was it simply the fact I effectively created a flip-flop there the cause of all this? |