Search found 135 matches

by AtomSoft
Thu May 15, 2014 4:08 pm
Forum: Other XMOS Development Kits
Topic: xCORE-ANALOG sliceKIT
Replies: 1
Views: 3399

Re: xCORE-ANALOG sliceKIT

Just got the news... document is not avaiable yet... soon! :)
by AtomSoft
Wed May 14, 2014 1:42 am
Forum: Other XMOS Development Kits
Topic: xCORE-ANALOG sliceKIT
Replies: 1
Views: 3399

xCORE-ANALOG sliceKIT

Looking for documentation for the Mixed Signal sliceCARD for the analog kit. Cant use mines without that. Ive looked around but no luck. The main "xCORE-Analog sliceKIT Hardware Manual" doesnt have a schematic or anything close to useful information on that sliceCARD so i thought id ask he...
by AtomSoft
Tue Feb 18, 2014 2:00 pm
Forum: Projects
Topic: 4.3" TFT using FT800
Replies: 3
Views: 3727

4.3" TFT using FT800

<t>Version: 1<br/> Status: Beta<br/> License: BSD<br/> Download: /files/project_builds/FT800_MAIN.zip<br/> <br/> Basically what the title says. Using SPI you can control a FT800Q IC which controls a 4.3" TFT LCD.<br/> <br/> Basically what the title says. Using SPI you can control a FT800Q IC which c...
by AtomSoft
Sat Feb 08, 2014 1:53 am
Forum: Projects
Topic: 2.8'' TFT Touch Shield V1.0
Replies: 1
Views: 2579

Re: 2.8'' TFT Touch Shield V1.0

by AtomSoft
Fri Feb 07, 2014 9:30 pm
Forum: Projects
Topic: 2.8'' TFT Touch Shield V1.0
Replies: 1
Views: 2579

2.8'' TFT Touch Shield V1.0

<r>Version: 1<br/> Status: Under development<br/> License: BSD<br/> <br/> Converting Radio Shacks 2.8'' TFT Touch Shield V1.0 to XMOS. Actual LCD Code works and will be uploaded 2/7/14. The touch screen portion will use a ADS7843 since i have it on a PCB already. The Touch portion is NOT complete or...
by AtomSoft
Fri Feb 07, 2014 4:19 am
Forum: Development Tools and Programming
Topic: Reconfigure ports
Replies: 6
Views: 4508

Re: Reconfigure ports

Hows this:

Code: Select all

port pU = XS1_PORT_4C;
port pL = XS1_PORT_4D;

void all_pin_input(void)
{
	char temp;
	pL :> temp;
	pU :> temp;
}

void all_pin_output(void)
{
	char temp;
	pL :> temp;
	pL <: temp;
	pU :> temp;
	pU <: temp;
}
by AtomSoft
Fri Feb 07, 2014 4:15 am
Forum: Development Tools and Programming
Topic: Reconfigure ports
Replies: 6
Views: 4508

Re: Reconfigure ports

Found this info... 6 Bidirectional ports If a port is programmed in bidirectional mode, it tri-states when an input is made, and starts to drive when an output is made. In the case of a timed input to output, a change in tri-state or drive mode is delayed until the port counter reaches the specified ...
by AtomSoft
Fri Feb 07, 2014 4:07 am
Forum: Development Tools and Programming
Topic: Reconfigure ports
Replies: 6
Views: 4508

Re: Reconfigure ports

My info was from here:

https://www.xmos.com/en/node/17091?page=12

Last section....

So you are saying i should do this:

Code: Select all

port pU = XS1_PORT_4C;
port pL = XS1_PORT_4D;
instead ?
by AtomSoft
Fri Feb 07, 2014 2:04 am
Forum: Development Tools and Programming
Topic: Reconfigure ports
Replies: 6
Views: 4508

Reconfigure ports

OK i saw an example and want to know would this work? Basically Port 4D is my Lower Nibble and Port 4C is my Upper Nibble... I want to be able to switch from output to input and back again on the 4bit wide ports. out port pU = XS1_PORT_4C; out port pL = XS1_PORT_4D; out port * moveable ppU = &pU...