/* ======================================== * * Copyright YOUR COMPANY, THE YEAR * All Rights Reserved * UNPUBLISHED, LICENSED SOFTWARE. * * CONFIDENTIAL AND PROPRIETARY INFORMATION * WHICH IS THE PROPERTY OF your company. * * ======================================== */ #include char value; int main() { CyGlobalIntEnable; /* Enable global interrupts. */ UART_1_Start(); /* Place your initialization/startup code here (e.g. MyInst_Start()) */ while(1) { /* Place your application code here. */ CyDelay(100); UART_1_PutChar(100); CyDelay(100); UART_1_PutChar(100); } } /* [] END OF FILwhileE */