Search found 93 matches

by aneves
Tue May 29, 2018 2:21 pm
Forum: Development Tools and Programming
Topic: IDE keeps changing project files behind my back
Replies: 2
Views: 2563

Re: IDE keeps changing project files behind my back

I'm using v14.3.3 of xTimeComposer Studio but I've seen the same behavior in previous releases of v14.

Does anyone know how to turn off these "auto" features off?
by aneves
Thu May 24, 2018 1:00 pm
Forum: Development Tools and Programming
Topic: IDE keeps changing project files behind my back
Replies: 2
Views: 2563

IDE keeps changing project files behind my back

Hello, I've noticed several instances where the IDE is modifying project files behind my back. By project files, I don't mean source or header files but .cproject and .prefs files. Whenever I switch branches in source code control, I see that these files have been changed by the IDE. When I diff the...
by aneves
Thu Apr 19, 2018 2:00 pm
Forum: Development Tools and Programming
Topic: Char interface for lib_sdram?
Replies: 1
Views: 2771

Char interface for lib_sdram?

Hi Guys, I've been using lib_sdram extensively for quite some time now. I find that the API requiring unsigned int arrays for data transfer to be hard to use in most cases because most of the time my source or sink of data is a char array. I wrote some wrapper functions which wrap sdram_write and sd...
by aneves
Tue Mar 13, 2018 4:01 pm
Forum: Development Tools and Programming
Topic: building across different hardware
Replies: 4
Views: 3428

Re: building across different hardware

Not to sound facetious, but a build configuration... configures your build! The build configuration is a container for anything related to how you want to control the build process. By default in the IDE, you do this by modifying the Makefile to specify the various flags you want to pass to the many...
by aneves
Mon Mar 12, 2018 2:54 pm
Forum: Development Tools and Programming
Topic: building across different hardware
Replies: 4
Views: 3428

Re: building across different hardware

Hi woodsb! We currently do this for the exact same reason. The way we do this is we comment out the line in the Makefile which sets the variable TARGET. Create a build configuration for each target you want to support. Then right-click on your project and click Properties. Click on C/C++ Build and l...
by aneves
Wed Feb 28, 2018 7:48 pm
Forum: XMOS Devices
Topic: Xlinks with USB on the XU
Replies: 10
Views: 72032

Re: Xlinks with USB on the XU

Excellent! Thank you!!
by aneves
Fri Feb 23, 2018 4:52 pm
Forum: XMOS Devices
Topic: Xlinks with USB on the XU
Replies: 10
Views: 72032

Re: Xlinks with USB on the XU

Hi mon2,

Thank you very much for your thorough response.

I will wait to hear wait the factory says.

Thanks!!!
by aneves
Thu Feb 22, 2018 1:34 pm
Forum: XMOS Devices
Topic: Xlinks with USB on the XU
Replies: 10
Views: 72032

Re: Xlinks with USB on the XU

Hi avignani,

Are you saying that you were unable to use the links that overlap the ports required by the USB PHY?

It would be great if we could get some insight from XMOS on this one!
by aneves
Wed Feb 14, 2018 2:59 pm
Forum: Development Tools and Programming
Topic: How to send command to XMOS by USB HID
Replies: 1
Views: 2081

Re: How to send command to XMOS by USB HID

You need to be familiar with the Windows API concerning finding and communication with hardware devices. This can be coded in either C++ or C#. Check out this Microsoft page for a great into to developing applications on Windows for USB communication: https://docs.microsoft.com/en-us/windows-hardwar...
by aneves
Wed Feb 14, 2018 2:49 pm
Forum: Development Tools and Programming
Topic: Storing function pointers in void* in Xc
Replies: 2
Views: 3618

Re: Storing function pointers in void* in Xc

Yes! Thank you for the quick response!!