I had a working copy of Matlab2012b, ISE14.4 on windows 7 sp1 64bit, and ska-sa 
library compiled successfully, with only slight modification in OS checking 
code in gen_xps_file.m.

The error message, as Wesley said, is just a warning and does not influence 
following process. Ignore it or manually add your ISE version string into 
version checking code in casper_xps.m.

Below are diffs of my modification against ska-sa master branch:

diff --git a/xps_library/gen_xps_files.m b/xps_library/gen_xps_files.m
index 05e2392..6d07508 100644
--- a/xps_library/gen_xps_files.m
+++ b/xps_library/gen_xps_files.m
@@ -72,6 +72,10 @@ if s ~= 0
     fprintf('Detected Unknown Windows-like OS');
   end
   system_os = 'windows';
+elseif ~isempty(regexpi(w,'windows','ONCE'))
+  slash = '/';
+  disp(sprintf('Detected Windows OS'));
+  system_os = 'windows';
 elseif ~isempty(regexp(w, 'Linux', 'ONCE')),
   slash = '/';
   fprintf('Detected Linux OS');


diff --git a/xps_library/casper_xps.m b/xps_library/casper_xps.m
index f02096c..e51b178 100644
--- a/xps_library/casper_xps.m
+++ b/xps_library/casper_xps.m
@@ -66,7 +66,7 @@ if nargin == 0  % LAUNCH GUI
             set(handles.xsg_version,'String','14.2');
         case {'14.3'}
             set(handles.xsg_version,'String','14.3');
-        case {'14.4'}
+        case {'14.4', '14.4.4541'}
             set(handles.xsg_version,'String','14.4');
         otherwise
             errordlg(['Unsupported Xilinx System Generator version: ',xsg]);



Good luck,

Yan


发件人: [email protected] 
[mailto:[email protected]] 代表 Laura 
Vertatschitsch
发送时间: 2013年8月20日 4:28
收件人: Mark Wagner
抄送: Kujawski, Joseph; casper list
主题: Re: [casper] Setting up CASPER tools on a Windows machine

Might not solve your problem exactly, but a virtual machine with windows host, 
red hat guest might work well.

On Mon, Aug 19, 2013 at 1:21 PM, Mark Wagner <[email protected]> wrote:
Hi Joseph,

I don't think Matlab 2013 is supported by Xilinx 14.5 or 14.6 yet:

http://www.xilinx.com/support/answers/56250.html

Mark

On Mon, Aug 19, 2013 at 1:17 PM, Wesley New <[email protected]> wrote:
Hi Joe,
That error should actually be a warning. It doesnt stop you from compiling 
designs. There is something else not right with your setup. 
Have a look at the startsg script in the root of the mlib_devel directory and 
check that you are setting all those environment variables correctly.
Regards
Wes
On 19 Aug 2013 21:50, "Kujawski, Joseph" <[email protected]> wrote:
Does anyone have a setup guide for getting the CASPER tools running in a 
Windows environment?

My configuration is as follows:

1) Windows 7, 64bit
2) Matlab 2013a
3) Xilinx ISE version 14.6

I followed the instructions at 
https://casper.berkeley.edu/wiki/MSSGE_Setup_with_Xilinx_14.5_and_Matlab_2012b 
as best I could for the Windows platform, but have not gotten to the point that 
I can see the CASPER blocks in my Simulink library.

Running casper_xps in Matlab produces the error 'Unsupported Xilinx System 
Generator version 14.5.4652'


-- 
**************************************
* Joe Kujawski
* Siena College
* Dept. of Physics and Astronomy, RB 113
* 515 Loudon Road
* Loudonville, NY 12211-1462
*
* Email: [email protected]
* Phone: 518-782-6885
* Fax: 518-783-2986
**************************************






Reply via email to