Changes between Version 10 and Version 11 of FAQ/EDK


Ignore:
Timestamp:
Jul 18, 2006, 10:04:18 PM (18 years ago)
Author:
snovich
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ/EDK

    v10 v11  
    7171----
    7272
     73== I've included the WARP SysACE libraries in my project, but I get errors about functions not being able to be found! ==
     74Using the WARP SysACE library, requires 3 additional libraries to be added:
     75 * xsysace.h
     76 * xsysace_l.h
     77 * '''sysace_stdio.h'''
    7378
     79You should not have to add '''any''' of these libraries manually. The first two should work as long as you have instantiated a SystemACE controller peripheral in your project. The last library, however, requires an additional modification to the '''MSS''' file:
     80{{{
     81...
     82...
     83BEGIN LIBRARY
     84 PARAMETER LIBRARY_NAME = xilfatfs
     85 PARAMETER LIBRARY_VER = 1.00.a
     86# # add write capabilities. Needed for the warpsysace lib to work
     87 PARAMETER CONFIG_WRITE = true
     88# # add make/change dir support needed for the libs to work correctly.
     89 PARAMETER CONFIG_DIR_SUPPORT = true
     90# reconfig doesn't work with FAT12 systems. Use 16 and/or 32
     91 PARAMETER CONFIG_FAT12 = false
     92# max files alloted, doesn't matter
     93 PARAMETER CONFIG_MAXFILES = 5
     94# buffer size -- depends on the max size of data chunks you want to write to a CF at once
     95 PARAMETER CONFIG_BUFCACHE_SIZE = 10240
     96 PARAMETER PROC_INSTANCE = ppc405_0
     97END
     98}}}
     99----
     100
     101
     102
     103