uart_hal_iram.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. // The HAL layer for UART (IRAM part)
  15. #include "hal/uart_hal.h"
  16. void uart_hal_txfifo_rst(uart_hal_context_t *hal)
  17. {
  18. uart_ll_txfifo_rst(hal->dev);
  19. }
  20. void uart_hal_rxfifo_rst(uart_hal_context_t *hal)
  21. {
  22. uart_ll_rxfifo_rst(hal->dev);
  23. }
  24. void uart_hal_tx_break(uart_hal_context_t *hal, uint32_t break_num)
  25. {
  26. uart_ll_tx_break(hal->dev, break_num);
  27. }
  28. void uart_hal_write_txfifo(uart_hal_context_t *hal, const uint8_t *buf, uint32_t data_size, uint32_t *write_size)
  29. {
  30. uint16_t fill_len = uart_ll_get_txfifo_len(hal->dev);
  31. if(fill_len > data_size) {
  32. fill_len = data_size;
  33. }
  34. *write_size = fill_len;
  35. uart_ll_write_txfifo(hal->dev, buf, fill_len);
  36. }
  37. void uart_hal_read_rxfifo(uart_hal_context_t *hal, uint8_t *buf, int *inout_rd_len)
  38. {
  39. uint16_t read_len = (*inout_rd_len > 0) ? *inout_rd_len : uart_ll_get_rxfifo_len(hal->dev);
  40. *inout_rd_len = read_len;
  41. uart_ll_read_rxfifo(hal->dev, buf, read_len);
  42. }