Hi Katty
Looking at bee_xps.m, it seems that all that try/catch and switch/case
stuff does is changes the version of ISE displayed in the GUI. Try
commenting it all out, and replacing it with just
set(handles.xsg_version,'String','12.1');
similar to my earlier suggestion. If that works, then come back to tidy
this up this later (you really have to pick your battles with ISE!)
Cheers
Danny
On 09/10/2012 16:03, katherine viviana cortes urbina wrote:
I am sorry,
I have installing Centos 5.8/matlab R2009b/ISE 12.1.
but the problem to continue;
%get the Xilinx Sysgen version
xsg = xlVersion;
try
xsg = strtok(xsg{1},' ');
catch
xsg = get_xlVersion('full');
end
switch xsg
case {'8.2.02'}
set(handles.xsg_version,'String','8.2');
case {'9.1.01'}
set(handles.xsg_version,'String','9.1');
case {'10.1.1.1182'}
set(handles.xsg_version,'String','10.1');
case {'10.1.2.1250'}
set(handles.xsg_version,'String','10.1');
case {'10.1.3.1386'}
set(handles.xsg_version,'String','10.1');
case {'11.3.2055'}
set(handles.xsg_version,'String','11.3');
case {'11.4.2254'}
set(handles.xsg_version,'String','11.4');
case {'12.1.'}
set(handles.xsg_version,'String','12.1');
otherwise
errordlg(['Unsupported Xilinx System Generator version:
',xsg]);
return;
end
but when I try to compile , I go back to having the same error;
>> bee_xps
??? Reference to non-existent element of a cell array.
Error in ==> get_xlVersion at 24
argout = [xsgVer, '.', toks{1}{1}];
Error in ==> bee_xps at 53
xsg = get_xlVersion('full');
Detected Linux OS
Error using ==> gen_xps_files at 106
Due to EDK toolflow limitations, the system name cannot start with an
upper case letter.
Cheers,
2012/10/9 Rurik A. Primiani <[email protected]
<mailto:[email protected]>>
Hi Katherine,
In your email you say you installed Matlab R2009b and Xilinx 13.1.
These versions are not compatible according to Xilinx:
http://www.xilinx.com/support/answers/17966.htm. You should either
downgrade to Xilinx 11.5 or upgrade to Matlab R2010b.
Best,
Rurik
On 10/9/12 8:57 AM, katherine viviana cortes urbina wrote:
Dear Casper,
I have intaling Centos 5.8/matlab R2009b/ISE 13.1, I have
create a
design for example tut1 (one the most simple) but when I try
to compile
any design with bee_xps. I got the following error;
>> bee_xps
??? Reference to non-existent element of a cell array.
Error in ==> get_xlVersion at 24
argout = [xsgVer, '.', toks{1}{1}];
Error in ==> bee_xps at 53
xsg = get_xlVersion('full');
cheers
katty