user_uart.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #include "user_uart.h"
  2. #include "driver_dma.h"
  3. static UART_HandleTypeDef Uart1_handle;
  4. static UART_HandleTypeDef Uart0_handle;
  5. uint8_t TxBuffer8[256];
  6. uint8_t RxBuffer8[256];
  7. /*********************************************************************
  8. * @fn uart0_isr_ram
  9. *
  10. * @brief UART0 interruption, when uart0 FIFO received charaters, this ISR will be called
  11. *
  12. *
  13. * @param None
  14. *
  15. *
  16. * @return None
  17. */
  18. __attribute__((section("ram_code"))) void uart1_isr(void)
  19. {
  20. uint32_t isr_id;
  21. volatile struct_UART_t * const uart_reg_ram = (volatile struct_UART_t *)UART1_BASE;
  22. isr_id = uart_reg_ram->FCR_IID.IID;
  23. if(((isr_id & 0x04) == 0x04) || ((isr_id & 0x0c) == 0x0c)) //receciver data available or character timeout indication
  24. {
  25. while(uart_reg_ram->LSR.LSR_BIT.DR)
  26. {
  27. uint8_t data = (uint8_t)uart_reg_ram->DATA_DLL.DATA;
  28. //app_at_recv_c(data);
  29. //printf("%c",data);
  30. uart_transmit(&Uart1_handle, &data, 1);
  31. }
  32. }
  33. else if((isr_id & 0x06) == 0x06)//receiver line status interrupt
  34. {
  35. uint32_t tmp = uart_reg_ram->LSR.LSR_DWORD;
  36. uart_reg_ram->FCR_IID.FCR = isr_id;
  37. uart_reg_ram->IER_DLH.IER.ELSI = 0;
  38. }
  39. //printf("uart1_isr\r\n");
  40. }
  41. __attribute__((section("ram_code"))) void uart0_isr(void)
  42. {
  43. uint32_t isr_id;
  44. volatile struct_UART_t * const uart_reg_ram = (volatile struct_UART_t *)UART0_BASE;
  45. isr_id = uart_reg_ram->FCR_IID.IID;
  46. if(((isr_id & 0x04) == 0x04) || ((isr_id & 0x0c) == 0x0c)) //receciver data available or character timeout indication
  47. {
  48. while(uart_reg_ram->LSR.LSR_BIT.DR)
  49. {
  50. uint8_t data = (uint8_t)uart_reg_ram->DATA_DLL.DATA;
  51. uart_transmit(&Uart0_handle, &data, 1);
  52. }
  53. }
  54. else if((isr_id & 0x06) == 0x06)
  55. {
  56. uint32_t tmp = uart_reg_ram->LSR.LSR_DWORD;
  57. uart_reg_ram->FCR_IID.FCR = isr_id;
  58. uart_reg_ram->IER_DLH.IER.ELSI = 0;
  59. }
  60. }
  61. /*********************************************************************
  62. * @fn at_init
  63. *
  64. * @brief Initializate gAT_env elements and assign UART0 pins
  65. *
  66. *
  67. * @param None
  68. *
  69. *
  70. * @return None
  71. */
  72. void user_uart_init(void)
  73. {
  74. uint32_t i;
  75. // system_set_port_pull(GPIO_PA2,GPIO_PULL_UP,true);
  76. // system_set_port_mux(GPIO_PORT_A, GPIO_BIT_2, PORTA2_FUNC_UART1_RXD);
  77. // system_set_port_mux(GPIO_PORT_A, GPIO_BIT_3, PORTA3_FUNC_UART1_TXD);
  78. GPIO_InitTypeDef GPIO_Handle;
  79. __SYSTEM_GPIO_CLK_ENABLE();
  80. __SYSTEM_UART1_CLK_ENABLE();
  81. __SYSTEM_UART0_CLK_ENABLE();
  82. #if 0
  83. GPIO_Handle.Pin = GPIO_PIN_2|GPIO_PIN_3;
  84. GPIO_Handle.Mode = GPIO_MODE_AF_PP;
  85. GPIO_Handle.Pull = GPIO_PULLUP;
  86. GPIO_Handle.Alternate = GPIO_FUNCTION_5;//´®¿ÚÓÃ
  87. gpio_init(GPIO_A, &GPIO_Handle);
  88. #endif
  89. GPIO_Handle.Pin = GPIO_PIN_0|GPIO_PIN_1;
  90. GPIO_Handle.Mode = GPIO_MODE_AF_PP;
  91. GPIO_Handle.Pull = GPIO_PULLUP;
  92. GPIO_Handle.Alternate = GPIO_FUNCTION_5;//´®¿ÚÓÃ
  93. gpio_init(GPIO_A, &GPIO_Handle);
  94. GPIO_Handle.Pin = GPIO_PIN_6|GPIO_PIN_7;
  95. GPIO_Handle.Mode = GPIO_MODE_AF_PP;
  96. GPIO_Handle.Pull = GPIO_PULLUP;
  97. GPIO_Handle.Alternate = GPIO_FUNCTION_5;//´®¿ÚÓÃ
  98. gpio_init(GPIO_C, &GPIO_Handle);
  99. for (i = 0; i < 256; i++)
  100. {
  101. TxBuffer8[i] = i;
  102. }
  103. Uart1_handle.UARTx = Uart1;
  104. Uart1_handle.Init.BaudRate = 115200;
  105. Uart1_handle.Init.DataLength = UART_DATA_LENGTH_8BIT;
  106. Uart1_handle.Init.StopBits = UART_STOPBITS_1;
  107. Uart1_handle.Init.Parity = UART_PARITY_NONE;
  108. Uart1_handle.Init.FIFO_Mode = UART_FIFO_ENABLE;// UART_FIFO_ENABLE ;
  109. uart_init_ex(&Uart1_handle);
  110. //uart1_isr_int(&Uart1_handle);
  111. NVIC_EnableIRQ(UART1_IRQn);
  112. NVIC_SetPriority(UART1_IRQn, 6);
  113. //uart_transmit_IT(&Uart1_handle, TxBuffer8, 256);
  114. uart_transmit(&Uart1_handle, TxBuffer8, 256);
  115. //uart_receive_IT(&Uart1_handle, RxBuffer8, 1);
  116. __UART_INT_RX_ENABLE(Uart1_handle.UARTx);
  117. for (i = 0; i < 256; i++)
  118. {
  119. TxBuffer8[i] = i;
  120. }
  121. Uart1_handle.UARTx = Uart0;
  122. Uart1_handle.Init.BaudRate = 115200;
  123. Uart1_handle.Init.DataLength = UART_DATA_LENGTH_8BIT;
  124. Uart1_handle.Init.StopBits = UART_STOPBITS_1;
  125. Uart1_handle.Init.Parity = UART_PARITY_NONE;
  126. Uart1_handle.Init.FIFO_Mode = UART_FIFO_ENABLE;// UART_FIFO_ENABLE ;
  127. uart_init_ex(&Uart0_handle);
  128. //uart1_isr_int(&Uart1_handle);
  129. NVIC_EnableIRQ(UART0_IRQn);
  130. NVIC_SetPriority(UART0_IRQn, 6);
  131. //uart_transmit_IT(&Uart1_handle, TxBuffer8, 256);
  132. uart_transmit(&Uart0_handle, TxBuffer8, 256);
  133. //uart_receive_IT(&Uart1_handle, RxBuffer8, 1);
  134. __UART_INT_RX_ENABLE(Uart0_handle.UARTx);
  135. }