Software Forum Discussions
Browse the Community
ModusToolbox™
The ModusToolbox™ forum includes discussions regarding multi-platform development tools and a comprehensive suite of GitHub-hosted firmware libraries accompanied by thoroughly tested code example applications.
DAVE™
PSoC™ Creator & Designer
Discussion forum regarding PSoC Creator & Designer Software topics.
Wi-Fi Bluetooth for Linux
AURIX™ Development Studio
The AURIX™ Development Studio is a free of charge Integrated Development Environment (IDE) for the TriCore™-based AURIX™ microcontroller family. It is a comprehensive development environment, including Eclipse IDE, C-Compiler, Multi-core Debugger, Infineon low-level driver (iLLD), with no time and code-size limitations that enables editing, compiling, and debugging of application code. Combined with numerous code example projects, the IDE can be used to evaluate the powerful architecture of the AURIX™ microcontroller family. It supports Microsoft Windows 10 as a host operating system (OS).
Recent discussions
Cypress is planning to drop support for Windows 2000 for the PSoC Designer and PSoC Programmer tools. Before doing so, we would like to make sure that no one is using these platforms to run PSoC Designer or PSoC Programmer. Please give us your feedback if you happen to be using Win 2K.
Best Regards,
Sachin Gupta
Cypress Applications Support
Show Less
Am trying to interface an SD Card to PSOC3.Using the PSOC Creator software.
The hardware connections are correct.
Am reproducing the same waveform pattern using the SPI Module in the software.Yet the MISO stays low...no response to any of the SPI commands...
Here is my code snippet...
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
SPIM_1_Start();
for(i=0;i<10;i++)
{
SPIM_1_WriteByte(0Xff); //74 clocks
}
Pin_1_Write(0); ////make cs low
SPIM_1_WriteByte(0X40); ///CMD0
for(i=0;i<8;i++)
{
SPIM_1_WriteByte(0Xff); //64 clocks
}
SPIM_1_WriteByte(0X95);
for(i=0;i<4;i++)
{
SPIM_1_WriteByte(0Xff); //8x clocks
}
SPIM_1_WriteByte(0Xff); //8 clocks//data out must be here
Pin_1_Write(1); ////make cs high
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
No clue whats wrong...
please guide Show Less
Hey dear,
these are my first steps with Creator.
My purpose is to create a window comparator for 3 analog inputs and
-put 3 digital outputs hihg/low according to window
-display the voltages
Can i do build this with Psoc 3 kit?
Is there some example i can rely on?
Thanks,
Jacob
Show LessHi,
We are evaluating the published system requirments for PSoC Creator and how we can make them more useful. Does anyone actually look at and use this information? If so, which specs are most useful? Does it help to have both minimum and recommended systems? How do you expect us to account for the fact that the requirements are dependent on the size and complexity of your design?
Any thoughts on this would be helpful. Thanks.
Show LessWhat happens is when you try and Generate/Build a current project it fails to either auto assign pins for you or fails to allow you to assign pins.
Show Less
I'm not sure if this should be posted elsewhere but...
Does anyone know of any quaternion libraries or functions geared towards microcontrollers like PSOC5?
It would be nice if Creator came with some extended math libraries for robotics or other 3D applications.