]> sigrok.org Git - libsigrok.git/blame - src/trigger.c
libsigrok-internal.h: Remove unused prototypes
[libsigrok.git] / src / trigger.c
CommitLineData
7b5e6d29
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
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
c1aae900 20#include <libsigrok/libsigrok.h>
7b5e6d29
BV
21#include "libsigrok-internal.h"
22
23/* * @cond PRIVATE */
24#define LOG_PREFIX "trigger"
25/* * @endcond */
26
9fcc2866
UH
27/**
28 * @file
29 *
30 * Creating, using, or destroying triggers.
31 */
32
33/**
34 * @defgroup grp_trigger Trigger handling
35 *
36 * Creating, using, or destroying triggers.
37 *
38 * @{
39 */
40
a445f8aa
UH
41/**
42 * Create a new trigger.
43 *
44 * The caller is responsible to free the trigger (including all stages and
45 * matches) using sr_trigger_free() once it is no longer needed.
46 *
47 * @param name The trigger name to use. Can be NULL.
48 *
49 * @return A newly allocated trigger.
50 *
51 * @since 0.4.0
52 */
00ebcbf4 53SR_API struct sr_trigger *sr_trigger_new(const char *name)
7b5e6d29
BV
54{
55 struct sr_trigger *trig;
56
57 trig = g_malloc0(sizeof(struct sr_trigger));
58 if (name)
59 trig->name = g_strdup(name);
60
61 return trig;
62}
63
a445f8aa
UH
64/**
65 * Free a previously allocated trigger.
66 *
67 * This will also free any trigger stages/matches in this trigger.
68 *
69 * @param trig The trigger to free. Must not be NULL.
70 *
71 * @since 0.4.0
72 */
7b5e6d29
BV
73SR_API void sr_trigger_free(struct sr_trigger *trig)
74{
75 struct sr_trigger_stage *stage;
76 GSList *l;
77
cc8be68f
UH
78 if (!trig)
79 return;
80
7b5e6d29
BV
81 for (l = trig->stages; l; l = l->next) {
82 stage = l->data;
42f4619d
SA
83
84 if (stage->matches)
85 g_slist_free_full(stage->matches, g_free);
7b5e6d29 86 }
2fe80494 87 g_slist_free_full(trig->stages, g_free);
7b5e6d29
BV
88
89 g_free(trig->name);
90 g_free(trig);
91}
92
a445f8aa
UH
93/**
94 * Allocate a new trigger stage and add it to the specified trigger.
95 *
96 * The caller is responsible to free the trigger (including all stages and
97 * matches) using sr_trigger_free() once it is no longer needed.
98 *
99 * @param trig The trigger to add a stage to. Must not be NULL.
100 *
cc8be68f
UH
101 * @retval NULL An invalid (NULL) trigger was passed into the function.
102 * @retval other A newly allocated trigger stage (which has also been added
103 * to the list of stages of the specified trigger).
a445f8aa
UH
104 *
105 * @since 0.4.0
106 */
a153d6b8 107SR_API struct sr_trigger_stage *sr_trigger_stage_add(struct sr_trigger *trig)
7b5e6d29
BV
108{
109 struct sr_trigger_stage *stage;
110
cc8be68f
UH
111 if (!trig)
112 return NULL;
113
7b5e6d29
BV
114 stage = g_malloc0(sizeof(struct sr_trigger_stage));
115 stage->stage = g_slist_length(trig->stages);
116 trig->stages = g_slist_append(trig->stages, stage);
117
118 return stage;
119}
120
a445f8aa
UH
121/**
122 * Allocate a new trigger match and add it to the specified trigger stage.
123 *
124 * The caller is responsible to free the trigger (including all stages and
125 * matches) using sr_trigger_free() once it is no longer needed.
126 *
127 * @param stage The trigger stage to add the match to. Must not be NULL.
128 * @param ch The channel for this trigger match. Must not be NULL. Must be
129 * either of type SR_CHANNEL_LOGIC or SR_CHANNEL_ANALOG.
130 * @param trigger_match The type of trigger match. Must be a valid trigger
131 * type from enum sr_trigger_matches. The trigger type
132 * must be valid for the respective channel type as well.
133 * @param value Trigger value.
134 *
135 * @retval SR_OK Success.
136 * @retval SR_ERR_ARG Invalid argument(s) were passed to this functions.
137 *
138 * @since 0.4.0
139 */
7b5e6d29
BV
140SR_API int sr_trigger_match_add(struct sr_trigger_stage *stage,
141 struct sr_channel *ch, int trigger_match, float value)
142{
143 struct sr_trigger_match *match;
144
cc8be68f
UH
145 if (!stage || !ch)
146 return SR_ERR_ARG;
147
7b5e6d29
BV
148 if (ch->type == SR_CHANNEL_LOGIC) {
149 if (trigger_match != SR_TRIGGER_ZERO &&
150 trigger_match != SR_TRIGGER_ONE &&
151 trigger_match != SR_TRIGGER_RISING &&
152 trigger_match != SR_TRIGGER_FALLING &&
153 trigger_match != SR_TRIGGER_EDGE) {
154 sr_err("Invalid trigger match for a logic channel.");
155 return SR_ERR_ARG;
156 }
7b5e6d29 157 } else if (ch->type == SR_CHANNEL_ANALOG) {
cc8be68f
UH
158 if (trigger_match != SR_TRIGGER_RISING &&
159 trigger_match != SR_TRIGGER_FALLING &&
160 trigger_match != SR_TRIGGER_EDGE &&
7b5e6d29
BV
161 trigger_match != SR_TRIGGER_OVER &&
162 trigger_match != SR_TRIGGER_UNDER) {
163 sr_err("Invalid trigger match for an analog channel.");
164 return SR_ERR_ARG;
165 }
cc8be68f
UH
166 } else {
167 sr_err("Unsupported channel type: %d.", ch->type);
168 return SR_ERR_ARG;
7b5e6d29
BV
169 }
170
171 match = g_malloc0(sizeof(struct sr_trigger_match));
172 match->channel = ch;
173 match->match = trigger_match;
174 match->value = value;
175 stage->matches = g_slist_append(stage->matches, match);
176
177 return SR_OK;
178}
9fcc2866
UH
179
180/** @} */