Mapper/Linker Error

Technical questions regarding the XTC tools and programming with XMOS.
homerJ
Member
Posts: 15
Joined: Tue Mar 08, 2011 12:06 pm

Mapper/Linker Error

Post by homerJ »

Hi,

I have two XS-L1 devices in a chain and I want to send data from stdcore[0] to stdcore[1].
When the data was processed on stdcore[1] the results should be send back to stdcore[0].
I only use streaming channels and i get the compiler error (with 2wire or 5wire XLink):
"Network width between node "S" and node "M" is insufficient for specified streaming channels"

What is the problem???


richard
Respected Member
Posts: 318
Joined: Tue Dec 15, 2009 12:46 am

Post by richard »

A streaming channel reserves a permanent route between the two channel ends. No other channels are able to use the links along this route. The error suggests one of the following:
  • You have declared more streaming channels between the nodes then there are XMOS links.
  • The number of streaming channels between the nodes matches the number of XMOS links and there are other non streaming channels between these nodes.
homerJ
Member
Posts: 15
Joined: Tue Mar 08, 2011 12:06 pm

Post by homerJ »

aaah okay,
that was the problem,
thanks!