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

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
Sample Projects
3.2.3.14
76
* Summary:
*
*
* Parameters:
*
*
* Return:
*
*
*******************************************************************************/
void TxHex (uint8 voltageRawCount)
{
}
/* [] END OF FILE */
3. From the Build menu, select Build Ex3_ADC_to_UART_with_DAC. PSoC Creator builds the
Configuring and Programming the PSoC Development Board
1. Disconnect power to the board.
2. Configure the DVK bread board SW3 to 3.3V.
3. Using the jumper wires included, configure the PSoC Development Board's prototyping area to:
4. Verify that VR_PWR (J11) is jumpered to ON.
5. Verify that RS232_PWR (J10) is jumpered to ON.
6. Connect a serial cable from the PSoC Development Board to a PC.
7. Apply power to the board.
8. Install a terminal application such as TeraTerm or HyperTerminal with these setup parameters:
project and displays the comments in the Output dialog box. When you see the message “Build
Succeeded” the build is complete.
Convert voltage raw count to hex value and TX via UART.
voltageRawCount: The voltage raw counts being received from the ADC
void
static char8 const hex[16] = "0123456789ABCDEF";
UART_PutChar(hex[voltageRawCount>>4]);
UART_PutChar(hex[voltageRawCount&0x0F]); /* TX converted second nibble */
UART_PutStringConst("h\r");
P0[7] to VR
P1[2] to TX
P1[6] to LED1
Baud Rate: 9600
Data: 8-bit
Parity: none
Stop: 1-bit
Flow Control: none
CY8CKIT-001 PSoC Development Kit Guide, Doc. # 001-48651 Rev. **
/* h for hexadecimal and carriage return */
/* TX converted first nibble */
[+] Feedback

Related parts for CY8CKIT-001