tracing_backend_ram.c 941 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2021 IoT.bzh
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <ctype.h>
  7. #include <kernel.h>
  8. #include <string.h>
  9. #include <tracing_core.h>
  10. #include <tracing_buffer.h>
  11. #include <tracing_backend.h>
  12. uint8_t ram_tracing[CONFIG_RAM_TRACING_BUFFER_SIZE];
  13. static uint32_t pos;
  14. static bool buffer_full;
  15. static void tracing_backend_ram_output(
  16. const struct tracing_backend *backend,
  17. uint8_t *data, uint32_t length)
  18. {
  19. if (buffer_full) {
  20. return;
  21. }
  22. if ((pos + length) > CONFIG_RAM_TRACING_BUFFER_SIZE) {
  23. buffer_full = true;
  24. return;
  25. }
  26. memcpy(ram_tracing + pos, data, length);
  27. pos += length;
  28. }
  29. static void tracing_backend_ram_init(void)
  30. {
  31. memset(ram_tracing, 0, CONFIG_RAM_TRACING_BUFFER_SIZE);
  32. }
  33. const struct tracing_backend_api tracing_backend_ram_api = {
  34. .init = tracing_backend_ram_init,
  35. .output = tracing_backend_ram_output
  36. };
  37. TRACING_BACKEND_DEFINE(tracing_backend_ram, tracing_backend_ram_api);