RECEIVER USING UART

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hello Sir,

   

I am using Psoc 3  with CY8CKIT-001. I am using Psoc creator 1 for programming

   

I want to receive serial data at 9600 baud rate from UART.

   

I got help from sample code of 8 bit Uart from cypress site.

   

But that project does not get open directly. So I read all its C file and than made my own project which builds completely .

   

But still no output is seen on hardware.

   

Points:  

   

1) I have checked jumper 10 is properly placed.

   

2) I have made top design as per pdf  EP56061_Archive.

   

3) My main c file is same as that in EP56061_Archive.

   

4)My ISR_UART c file is same as that in EP56061_Archive.

   

   

*******************************************************************************

   

* File Name: ISR_UART_intc.c  

   

   

#include <UART.h>

   

extern uint8 flag_keyPress;

   

   

CY_ISR(ISR_UART_Interrupt)

   

{

   

    UART_GetRxInterruptSource();    

   

/* To indicate key press */

   

flag_keyPress = 1; 

   

}

   

   
    *******************************************************************************   
   

   

 

   

   

Please reply fast because I have stucked at this point from last 8 days

0 Likes
7 Replies