CY8CKIT-001 Cypress Semiconductor Corp, CY8CKIT-001 Datasheet - Page 79

KIT DEV FOR PSOC3/5

CY8CKIT-001

Manufacturer Part Number
CY8CKIT-001
Description
KIT DEV FOR PSOC3/5
Manufacturer
Cypress Semiconductor Corp
Series
PSoC® CapSenser
Type
MCUr
Datasheets

Specifications of CY8CKIT-001

Contents
Board, CD, CY8C29 & CY8C38 Modules, MiniProg3 Programmer/Debugger, Power Supply
Processor To Be Evaluated
CY8C29, CY8C38
Interface Type
RS-232, USB, JTAG
Operating Supply Voltage
3.3 V, 5 V
Lead Free Status / RoHS Status
Lead free / RoHS Compliant
For Use With/related Products
PSoC 1, PSoC 3 and PSoC 5
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
428-2961

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
CY8CKIT-001A
Manufacturer:
Cypress Semiconductor
Quantity:
135
CY8CKIT-001 PSoC Development Kit Guide, Doc. # 001-48651 Rev. **
}
/*******************************************************************************
* Function Name: UpdateDisplay
********************************************************************************
*
* Summary:
*
*
*
*
* Parameters:
*
*
* Return:
*
*
*******************************************************************************/
void UpdateDisplay (uint16 * voltageRawCount)
{
CharLCD_Position(0,9); /* Move the cursor to Row 0, Column 9 */
}
/*******************************************************************************
* Function Name: TxHex
********************************************************************************
*
}
Print voltage raw count result to the LCD.
necessary.
functions.
voltageRawCount: Voltage raw count from ADC
void
CharLCD_PrintNumber(voltageRawCount[0]); /* Print the result */
if (voltageRawCount[0] < 10)
{
}
else if (voltageRawCount[0] < 100)
{
}
if (voltageRawCount == -1)
{
}
else
{
UpdateDisplay(&voltageRawCount); /* Print the result to LCD */
TxHex(voltageRawCount); /* Transmit result to UART */
/* The LED blinking frequency is dependant on the Voltage raw count. With
DMAclock_SetDivider(((voltageRawCount) * 193) + 1010);
}
CharLCD_Position(0,10); /* Move the cursor to Row 0, Column 10 */
CharLCD_PrintString("
CharLCD_Position(0,11); /* Move the cursor to Row 0, Column 11 */
CharLCD_PrintString("
voltageRawCount = 0;
voltageRawCount /= 2;
a 3MHz clock the lowest divider (for raw count of 0) should be 1010
to blink at a very slow pace. The highest value is about 44,390
(193*230) to blink at a really fast pace */
The voltageRawCount parameter is also updated for use in other
"); /* Clear last characters */
"); /* Clear last characters */
Clears some characters if
Sample Projects
75
[+] Feedback

Related parts for CY8CKIT-001