Search found 15 matches

by shyamkrish8iitm
Thu Jan 03, 2013 7:40 pm
Forum: Development Tools and Programming
Topic: par statement
Replies: 11
Views: 11239

Re: par statement

hey i am using Xk 1a board for doing executing some program..i am the facing the same problem the code was working perfectly suddenly i started gettin the error xrun: Program received signal ET_ECALL, Application exception. [Switching to stdcore[0] hwthread 1] there was no big changes made to the co...
by shyamkrish8iitm
Fri Jul 06, 2012 10:12 am
Forum: General Questions
Topic: XTA basic
Replies: 9
Views: 11536

Re: XTA basic

In XTA document it's given that we can't analyze par{}. But I have to analyze so how to go about? par { for(i=0;i<BOUND;i++){ #pragma xta label "loop1" f(c1,i); } { #pragma xta label "loop2" for(k=0;k<BOUND;k++){ #pragma xta label "innerloop2" ch:>Data; x[Data] = x[Data...
by shyamkrish8iitm
Thu Jul 05, 2012 11:44 am
Forum: Development Tools and Programming
Topic: 11.11.0 Dev Tools Can't Find Hardware
Replies: 15
Views: 11375

Re: 11.11.0 Dev Tools Can't Find Hardware

My development tools seems to work fine. But when I connect XC-1A board (only board I have) its not getting detected. Recently changed my OS to ubuntu 12.04. It was detecting in windows though.

Thanks
by shyamkrish8iitm
Tue Jul 03, 2012 12:33 pm
Forum: General Questions
Topic: XTA basic
Replies: 9
Views: 11536

Re: XTA basic

Yet another doubt is, I can very well analyze my timing constraints using XMOS timer variable. I can't exclude labels as I do. But what's the significance and advantages of this tool when compared to analyze using timers?
by shyamkrish8iitm
Tue Jul 03, 2012 12:05 pm
Forum: General Questions
Topic: XTA basic
Replies: 9
Views: 11536

Re: XTA basic

Thank you very much sir, I am improving. Another doubt is, say I want to analyze a function. int function(int a){ . . printf(); printstrln(); . . } In the above code, I don't want the printf() statements to be analyzed. Using pragma how to exclude only that part of the code? Right now I am commentin...
by shyamkrish8iitm
Mon Jul 02, 2012 8:39 pm
Forum: General Questions
Topic: XTA basic
Replies: 9
Views: 11536

Re: XTA basic

label to specify particular code section within that loop.
Endpoints are usually just above any port operation or function call.
I hope I am right
by shyamkrish8iitm
Mon Jul 02, 2012 7:29 pm
Forum: General Questions
Topic: XTA basic
Replies: 9
Views: 11536

Re: XTA basic

{ . . . #pragma xta endpoint "start" . . . { #pragma xta label "one" } . . . } #pragma xta endpoint "end" for the above code snippet, if I say #pragma xta command "exclude one" #pragma xta command "analyze endpoints start end" does it mean that, whi...
by shyamkrish8iitm
Mon Jul 02, 2012 12:45 pm
Forum: General Questions
Topic: XTA basic
Replies: 9
Views: 11536

XTA basic

What is the difference between,
label
endpoint
call
loop and looppath
by shyamkrish8iitm
Fri Jun 08, 2012 4:27 pm
Forum: Getting started
Topic: Matlab to XC executable..
Replies: 1
Views: 2593

Matlab to XC executable..

Is there any way I can convert Matlab files to .XC? Or atleast XC executable. I have not used Embedded Matlab before. Will it be useful for coding in XC as well?
Since Octave is open source, any convertion from Octave to xc will also be helpful!!!
by shyamkrish8iitm
Thu Jun 07, 2012 6:41 am
Forum: Getting started
Topic: Streaming channel
Replies: 9
Views: 15091

Re: Streaming channel

Transaction Sequence of matching outputs and inputs are communicated over a channel asynchronously, with the entire transaction being synchronized at its beginning and end. Streams Establishes permanent route between two threads over which data can be efficiently communicated without synchronizatio...