protocol.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * This file is part of the libsigrok project.
  3. *
  4. * Copyright (C) 2013 Aurelien Jacobs <aurel@gnuage.org>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef LIBSIGROK_HARDWARE_APPA_55II_PROTOCOL_H
  20. #define LIBSIGROK_HARDWARE_APPA_55II_PROTOCOL_H
  21. #include <stdint.h>
  22. #include <glib.h>
  23. #include "libsigrok.h"
  24. #include "libsigrok-internal.h"
  25. #define LOG_PREFIX "appa-55ii"
  26. #define APPA_55II_NUM_CHANNELS 2
  27. #define APPA_55II_BUF_SIZE (4 + 32 + 1)
  28. #define DEFAULT_DATA_SOURCE DATA_SOURCE_LIVE
  29. enum {
  30. DATA_SOURCE_LIVE,
  31. DATA_SOURCE_MEMORY,
  32. };
  33. /** Private, per-device-instance driver context. */
  34. struct dev_context {
  35. /* Acquisition settings */
  36. uint64_t limit_samples; /**< The sampling limit (in number of samples). */
  37. uint64_t limit_msec; /**< The time limit (in milliseconds). */
  38. gboolean data_source; /**< Whether to read live samples or memory */
  39. void *session_cb_data; /**< Opaque pointer passed in by the frontend. */
  40. /* Operational state */
  41. uint64_t num_samples; /**< The number of already received samples. */
  42. int64_t start_time; /**< The time at which sampling started. */
  43. /* Temporary state across callbacks */
  44. uint8_t buf[APPA_55II_BUF_SIZE];
  45. unsigned int buf_len;
  46. uint8_t log_buf[64];
  47. unsigned int log_buf_len;
  48. unsigned int num_log_records;
  49. };
  50. SR_PRIV gboolean appa_55ii_packet_valid(const uint8_t *buf);
  51. SR_PRIV int appa_55ii_receive_data(int fd, int revents, void *cb_data);
  52. #endif