Hello
Is it possible to design a PSoC 4 circuit using just C code? Could you share a minimal example (blinking led)?
Thanks
Hernan Sanchez
Hello
Is it possible to design a PSoC 4 circuit using just C code? Could you share a minimal example (blinking led)?
Thanks
Hernan Sanchez
The PSoC4 can be used as normal MCU, but then you cannot (easily) make use of all its hardware features. Writing to pins can be done directly via the CyPins API. The hardware can be configured by writing the right values into the right registers (look at the 'PSoC4 register TRM'), but this is tedious and error-prone...
The PSoC4 can be used as normal MCU, but then you cannot (easily) make use of all its hardware features. Writing to pins can be done directly via the CyPins API. The hardware can be configured by writing the right values into the right registers (look at the 'PSoC4 register TRM'), but this is tedious and error-prone...