getline.c 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) 2017 Linaro Limited.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <drivers/uart.h>
  8. #include <drivers/console/console.h>
  9. #include <drivers/console/uart_console.h>
  10. /* While app processes one input line, Zephyr will have another line
  11. * buffer to accumulate more console input.
  12. */
  13. static struct console_input line_bufs[2];
  14. static K_FIFO_DEFINE(free_queue);
  15. static K_FIFO_DEFINE(used_queue);
  16. char *console_getline(void)
  17. {
  18. static struct console_input *cmd;
  19. /* Recycle cmd buffer returned previous time */
  20. if (cmd != NULL) {
  21. k_fifo_put(&free_queue, cmd);
  22. }
  23. cmd = k_fifo_get(&used_queue, K_FOREVER);
  24. return cmd->line;
  25. }
  26. void console_getline_init(void)
  27. {
  28. int i;
  29. for (i = 0; i < ARRAY_SIZE(line_bufs); i++) {
  30. k_fifo_put(&free_queue, &line_bufs[i]);
  31. }
  32. /* Zephyr UART handler takes an empty buffer from free_queue,
  33. * stores UART input in it until EOL, and then puts it into
  34. * used_queue.
  35. */
  36. uart_register_input(&free_queue, &used_queue, NULL);
  37. }