static irqreturn_t timer_interrupt(int irq,void *id,struct pt_regs *regs)
{
static unsigned short tmp_value;
static unsigned char rx_value;
static unsigned char tx_en = TRUE;
static unsigned char RX_flag = FALSE;
static unsigned char start_flag = FALSE;
static unsigned char rx_en = FALSE;
static unsigned char check_rx = 0;
static unsigned char tx_count = 0;
static unsigned char rx_count = 0;
tmp_value = tx_value & 0x0001;
if(TRUE == TX_flag)//ready for send
{
if(TRUE == tx_en) //send data
{
gpio_set_value(TXD_PIN,tmp_value);
tx_en = FALSE;
}
else //handle data
{
tx_en = TRUE;
tx_value = (tx_value >> 1) | 0xfe00;
tx_count++;
}
if(16 == tx_count) //send bits count
{
// printk("tmp_value = %x\n",tmp_value);
tx_count = 0;
TX_flag = FALSE;
}
}
if(TRUE == RX_flag)//ready for receive
{
if(FALSE == rx_en){
rx_en = TRUE;
}
else //receive data
{
rx_value >>= 1;
rx_en = FALSE;
if(gpio_get_value(RXD_PIN))
rx_value |= 0x80;
rx_count++;
}
if(8 == rx_count) //receive bits count
{
RX_flag = FALSE;
// printk(KERN_INFO"rx = %x\n",rx_value);
*m_st_uart0RxBuffer.u8pCurrentPtr = rx_value; //将接收到的数据放到当前最新接收的数据指针中
IncRxBuffer0(&m_st_uart0RxBuffer.u8pCurrentPtr,1);
}
}
else
{
if(gpio_get_value(RXD_PIN)){ //judge start bit
RX_flag = FALSE;
start_flag = TRUE;
}
else if(TRUE == start_flag)
{
RX_flag = TRUE;
rx_value = 0;
rx_count = 0;
start_flag = FALSE;
//printk(KERN_INFO"ss\n");
}
}
return IRQ_HANDLED;
} |