]> sigrok.org Git - libsigrok.git/commitdiff
Doxygen: Add @file items for the relevant files.
authorUwe Hermann <redacted>
Sun, 21 Oct 2012 22:30:12 +0000 (00:30 +0200)
committerUwe Hermann <redacted>
Mon, 22 Oct 2012 09:56:18 +0000 (11:56 +0200)
These short descriptions are shown in the "Files" section of the
Doxygen output.

16 files changed:
backend.c
datastore.c
device.c
error.c
filter.c
hwdriver.c
input/input.c
libsigrok-internal.h
libsigrok.h
log.c
output/output.c
proto.h
session.c
session_file.c
strutil.c
version.c

index b3e383935a6b23aa12777600e0683b92eded1df7..9f0f119fa5bfc3b29cf37b4d1c7eeeb9e3f472fe 100644 (file)
--- a/backend.c
+++ b/backend.c
  * <a href="http://sigrok.org/wiki/Libsigrok">sigrok.org/wiki/Libsigrok</a>
  */
 
+/**
+ * @file
+ *
+ * Initializing and shutting down libsigrok.
+ */
+
 /**
  * @defgroup grp_init Initialization
  *
index eac79cec92608e896f6e58932566247ab23cf718..16346695a855b9f0f6be18938387ef9346c7dbcc 100644 (file)
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Creating, using, or destroying libsigrok datastores.
+ */
+
 /**
  * @defgroup grp_datastore Datastore
  *
index 26e34c95e7791d02012e6d5cfd30d1e8e9ccc18a..2509c542ba4566816998f58e74de4bd4a6e7c881 100644 (file)
--- a/device.c
+++ b/device.c
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Device handling in libsigrok.
+ */
+
 /**
  * @defgroup grp_devices Devices
  *
diff --git a/error.c b/error.c
index 761c94e4da3662fbb87e1f3dd3dd5720a3fa31d8..c9b8589e218991059c3dcc4cd4eeeb6fb4f340e7 100644 (file)
--- a/error.c
+++ b/error.c
 
 #include "libsigrok.h"
 
+/**
+ * @file
+ *
+ * Error handling in libsigrok.
+ */
+
 /**
  * @defgroup grp_error Error handling
  *
index 4e3115cd10d73deda49973289ca645c58b1e20e2..df28a72348500be5dc93ba217f1028fc620563c7 100644 (file)
--- a/filter.c
+++ b/filter.c
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Helper functions to filter out unused probes from samples.
+ */
+
 /**
  * @defgroup grp_filter Probe filter
  *
index 207052cffc9a23486544dc73ac7984ff60f3b429..8be8a9e2dd8820d6fc813a6e6b45aadd86198c43 100644 (file)
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Hardware driver handling in libsigrok.
+ */
+
 /**
  * @defgroup grp_driver Hardware drivers
  *
index 1b83c65dda049929ffbdb366c9aba7cad2fe0c27..fd51a874ba9faf0701f4ff04d60a032aa3f413d6 100644 (file)
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Input file/data format handling.
+ */
+
 /**
  * @defgroup grp_input Input formats
  *
index 563605720c16b769bdce9abc11cb7c9b48ce9a41..38647622d825c0167ee3025b376200a95775ac86 100644 (file)
 #include <libusb.h>
 #endif
 
+/**
+ * @file
+ *
+ * libsigrok private header file, only to be used internally.
+ */
+
 /*--- Macros ----------------------------------------------------------------*/
 
 #ifndef ARRAY_SIZE
index 4c46734663cfa7bf3be72105f53f0dda55231ddc..fd09492ee0d8ccf9c4970a1ed1cd758a2dc85da3 100644 (file)
 extern "C" {
 #endif
 
+/**
+ * @file
+ *
+ * The public libsigrok header file to be used by frontends.
+ */
+
 /*
  * All possible return codes of libsigrok functions must be listed here.
  * Functions should never return hardcoded numbers as status, but rather
diff --git a/log.c b/log.c
index a3b807aa95c8fff91217679ceb859888ecda5079..6ebede70418f6f56dd6d53576d24957089482299 100644 (file)
--- a/log.c
+++ b/log.c
@@ -26,7 +26,7 @@
 /**
  * @file
  *
- * Logging support.
+ * Controlling the libsigrok message logging functionality.
  */
 
 /**
index 457a80c3a886b18cb398cfdef1523a233ccc97bd..d726ad934819f09829444b3f4036de781a5d75bb 100644 (file)
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Output file/data format handling.
+ */
+
 /**
  * @defgroup grp_output Output formats
  *
diff --git a/proto.h b/proto.h
index 49b2d7473087b6c16baea3b896ea266c5dbbd7c3..4c9286c103389d3628ce566a439c8eaaa96e7956 100644 (file)
--- a/proto.h
+++ b/proto.h
 #ifndef LIBSIGROK_SIGROK_PROTO_H
 #define LIBSIGROK_SIGROK_PROTO_H
 
+/**
+ * @file
+ *
+ * Header file containing API function prototypes.
+ */
+
 /*--- backend.c -------------------------------------------------------------*/
 
 SR_API int sr_init(struct sr_context **ctx);
index 0d4c13f725c14681b684f86d5aae0ebaa062065e..81e09b114dc59c44a2300dd85ad927329a7714ba 100644 (file)
--- a/session.c
+++ b/session.c
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Creating, using, or destroying libsigrok sessions.
+ */
+
 /**
  * @defgroup grp_session Session handling
  *
index 5b91f92932e5fe71674f618c3e325b51c8975f6c..41ca36c5fbd04e7a0f3920d9b97cfed80eaa9ab1 100644 (file)
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Loading and saving libsigrok session files.
+ */
+
 /**
  * @addtogroup grp_session
  *
index c147b961eb94a6c1aeb2dc4468aa97f388771950..1cb0db39efe1c1eb40870008e69452f83adc74e6 100644 (file)
--- a/strutil.c
+++ b/strutil.c
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Helper functions for handling or converting libsigrok-related strings.
+ */
+
 /**
  * @defgroup grp_strutil String utilities
  *
index 37baabecc9b15700cf464d3175d4f9316237c930..a92aa96057d6b4ecbe51b27838b858871db46880 100644 (file)
--- a/version.c
+++ b/version.c
 
 #include "libsigrok.h"
 
+/**
+ * @file
+ *
+ * Version number querying functions.
+ */
+
 /**
  * @defgroup grp_versions Versions
  *