Changes between Version 5 and Version 6 of FAQ


Ignore:
Timestamp:
Jun 16, 2006, 1:44:40 AM (18 years ago)
Author:
snovich
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v5 v6  
    1313=== I'm trying to run an ethernet demo. I get no response when I attempt to ping the board, despite everything else working, generating and downloading properly... ===
    1414This is most likely due to the clock speed your bus is running at. If you've included the ethernet core in your project and you review the hardware generation log -- you might notice an inconveniently small block of text telling you that the bus must run at a speed greater than 65mHz for ethernet transfers to work.
     15
     16=== I'm attempting to run Xilkernel and/or LWIP. Despite having all of the necessary libraries added into my C-Code, the compiler still gives me errors for undefined functions that are Xilkernel/LWIP-based. ===
     17
     18The problem may be more general and not just limited to Xilkernel or LWIP, but rather any libraries you've included in the software platform settings menu. The common problem is that the library paths have not been added to the compiler configuration menu. The fix is as follows:
     191. Go to Applications Tab -> Expand Project View -> Right-click on "Compiler Options" and click "Set Compiler Options..."
     202. Go to "Paths" Tab and then in the "Libraries to Link against(-l)" box, make sure that you add in
     21"xilkernel lwip4 " or that this phrase already exists. It's really just the names for each of these special libraries to be included separated by spaces.