Note, that the actual error causing your problem is stated at the very end:
"Due to EDK toolflow limitations, the system name cannot start with an
upper case letter."

The general advice is use short names starting with a lower case letter.

Glenn


On Tue, Oct 9, 2012 at 7:02 AM, katherine viviana cortes urbina <
kattycort...@gmail.com> wrote:

> Hi Wes,
>
> I return the version 13.1 and  save the script,
>
>
> %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 {'13.1.'}
>             set(handles.xsg_version,'String','13.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,
>
> katty
>
>
>
> 2012/10/9 Wesley New <wes...@ska.ac.za>
>
>> Hi Kath,
>>
>> If you look in the bee_xps.m script you will see a list of supported
>> versions. It seems that get_xlVersion('full') only returns the version in
>> the format xx.y and not xx.y.zzzz any more. I would suggest that you edit
>> the script to support this version.
>>
>> Regards
>>
>> Wes
>>
>>
>> On Tue, Oct 9, 2012 at 2:57 PM, katherine viviana cortes urbina <
>> kattycort...@gmail.com> 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
>>>
>>>
>>>
>>
>

Reply via email to