-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate_module.c
149 lines (109 loc) · 3.57 KB
/
template_module.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*----------------------------------------------------------------------
This file is part of Freetribe
https://github.com/bangcorrupt/freetribe
License
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
AGPL-3.0-or-later
Freetribe is free software: you can redistribute it and/or modify it
under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Freetribe is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Copyright bangcorrupt 2023
----------------------------------------------------------------------*/
/**
* @file template_module.c
*
* @brief Template for DSP module source files.
*
*/
/*----- Includes -----------------------------------------------------*/
#include "fract_math.h"
#include "types.h"
#include "module.h"
#include "utils.h"
/*----- Macros -------------------------------------------------------*/
/*----- Typedefs -----------------------------------------------------*/
/**
* @brief Enumeration of module parameters.
*
* Index of each external parameter of module.
*/
enum params {
PARAM_COUNT /// Should remain last to return number of parameters.
};
/*----- Static variable definitions ----------------------------------*/
/*----- Extern variable definitions ----------------------------------*/
/*----- Static function prototypes -----------------------------------*/
/*----- Extern function implementations ------------------------------*/
/**
* @brief Initialise module.
*/
void module_init(void) {
//
}
/**
* @brief Process audio.
*
* @param[in] in Pointer to input buffer.
* @param[out] out Pointer to input buffer.
*/
void module_process(fract32 *in, fract32 *out) {
//
}
/**
* @brief Set parameter.
*
* @param[in] param_index Index of parameter to set.
* @param[in] value Value of parameter.
*/
void module_set_param(uint16_t param_index, int32_t value) {
switch (param_index) {
default:
break;
}
}
/**
* @brief Get parameter.
*
* @param[in] param_index Index of parameter to get.
*
* @return value Value of parameter.
*/
int32_t module_get_param(uint16_t param_index) {
int32_t value = 0;
switch (param_index) {
default:
break;
}
return value;
}
/**
* @brief Get number of parameters.
*
* @return Number of parameters
*/
uint32_t module_get_param_count(void) { return PARAM_COUNT; }
/**
* @brief Get name of parameter at index.
*
* @param[in] param_index Index pf parameter.
* @param[out] text Buffer to store string.
* Must provide 'MAX_PARAM_NAME_LENGTH'
* bytes of storage.
*/
void module_get_param_name(uint16_t param_index, char *text) {
switch (param_index) {
default:
copy_string(text, "Unknown", MAX_PARAM_NAME_LENGTH);
break;
}
}
/*----- Static function implementations ------------------------------*/
/*----- End of file --------------------------------------------------*/