andrewm@47
|
1 /**
|
andrewm@47
|
2 * @file
|
andrewm@47
|
3 * @brief Main BeagleRT public API
|
andrewm@46
|
4 *
|
andrewm@46
|
5 * Central control code for hard real-time audio on BeagleBone Black
|
andrewm@46
|
6 * using PRU and Xenomai Linux extensions. This code began as part
|
andrewm@46
|
7 * of the Hackable Instruments project (EPSRC) at Queen Mary University
|
andrewm@46
|
8 * of London, 2013-14.
|
andrewm@46
|
9 *
|
andrewm@47
|
10 * (c) 2014-15 Andrew McPherson, Victor Zappi and Giulio Moro,
|
andrewm@46
|
11 * Queen Mary University of London
|
andrewm@46
|
12 */
|
andrewm@46
|
13
|
andrewm@48
|
14 /**
|
andrewm@48
|
15 * \mainpage
|
andrewm@48
|
16 *
|
andrewm@48
|
17 * BeagleRT is a hard-real-time, ultra-low latency audio and sensor environment for
|
andrewm@48
|
18 * BeagleBone Black, which works with the BeagleBone Audio Cape or a custom "BeagleRT Cape"
|
andrewm@48
|
19 * which incorporates stereo audio with 8x, 16-bit analog inputs and outputs.
|
andrewm@48
|
20 *
|
andrewm@48
|
21 * BeagleRT is based on the Xenomai real-time Linux extensions (http://xenomai.org) and
|
andrewm@48
|
22 * uses the BeagleBone %PRU subsystem to address the audio and sensor hardware.
|
andrewm@48
|
23 *
|
andrewm@48
|
24 * Further information can be found at http://beaglert.cc
|
andrewm@48
|
25 */
|
andrewm@48
|
26
|
andrewm@46
|
27
|
andrewm@46
|
28 #ifndef BEAGLERT_H_
|
andrewm@46
|
29 #define BEAGLERT_H_
|
andrewm@46
|
30
|
andrewm@46
|
31 #include <stdint.h>
|
andrewm@55
|
32 #include <rtdk.h>
|
andrewm@46
|
33 #include "digital_gpio_mapping.h"
|
andrewm@46
|
34
|
andrewm@46
|
35 // Useful constants
|
andrewm@47
|
36
|
andrewm@47
|
37 /** \cond PRIVATE */
|
andrewm@46
|
38 #define DBOX_CAPE // New custom cape
|
andrewm@46
|
39 #ifdef DBOX_CAPE
|
andrewm@46
|
40 #define CODEC_I2C_ADDRESS 0x18 // Address of TLV320AIC3104 codec
|
andrewm@46
|
41 #else
|
andrewm@46
|
42 #define CODEC_I2C_ADDRESS 0x1B // Address of TLV320AIC3106 codec
|
andrewm@46
|
43 #endif
|
andrewm@46
|
44
|
andrewm@46
|
45 #define MAX_PRU_FILENAME_LENGTH 256
|
andrewm@46
|
46 #define MAX_SERVERNAME_LENGTH 256
|
andrewm@47
|
47 /** \endcond */
|
andrewm@46
|
48
|
andrewm@47
|
49 /**
|
andrewm@47
|
50 * \ingroup auxtask
|
andrewm@47
|
51 *
|
andrewm@47
|
52 * Xenomai priority level for audio processing. Maximum possible priority is 99.
|
andrewm@47
|
53 * In general, all auxiliary tasks should have a level lower than this unless for\
|
andrewm@47
|
54 * special purposes where the task needs to interrupt audio processing.
|
andrewm@47
|
55 */
|
andrewm@46
|
56 #define BEAGLERT_AUDIO_PRIORITY 95
|
andrewm@46
|
57
|
andrewm@47
|
58 // Default volume levels
|
andrewm@47
|
59
|
andrewm@47
|
60 /**
|
andrewm@47
|
61 * \addtogroup levels
|
andrewm@47
|
62 *
|
andrewm@47
|
63 * @{
|
andrewm@47
|
64 */
|
andrewm@47
|
65
|
andrewm@47
|
66 /**
|
andrewm@47
|
67 * Default level of the audio DAC in decibels. See BeagleRT_setDACLevel().
|
andrewm@47
|
68 */
|
andrewm@47
|
69 #define DEFAULT_DAC_LEVEL 0.0
|
andrewm@47
|
70
|
andrewm@47
|
71 /**
|
andrewm@47
|
72 * Default level of the audio ADC in decibels. See BeagleRT_setADCLevel().
|
andrewm@47
|
73 */
|
andrewm@47
|
74 #define DEFAULT_ADC_LEVEL -6.0
|
andrewm@47
|
75
|
giuliomoro@171
|
76
|
giuliomoro@171
|
77 /**
|
giuliomoro@171
|
78 * Default level of the Programmable Gain Amplifier in decibels.
|
giuliomoro@171
|
79 */
|
giuliomoro@171
|
80 #define DEFAULT_PGA_GAIN 16
|
giuliomoro@171
|
81
|
andrewm@47
|
82 /**
|
andrewm@47
|
83 * Default level of the headphone output in decibels. See BeagleRT_setHeadphoneLevel().
|
andrewm@47
|
84 */
|
andrewm@47
|
85 #define DEFAULT_HP_LEVEL -6.0
|
andrewm@47
|
86 /** @} */
|
andrewm@47
|
87
|
andrewm@47
|
88 /**
|
andrewm@47
|
89 * Flag for BeagleRTContext. If set, indicates the audio and analog buffers are interleaved.
|
andrewm@47
|
90 */
|
andrewm@46
|
91 #define BEAGLERT_FLAG_INTERLEAVED (1 << 0) // Set if buffers are interleaved
|
andrewm@47
|
92 /**
|
andrewm@47
|
93 * Flag for BeagleRTContext. If set, indicates analog outputs persist for future frames.
|
andrewm@47
|
94 */
|
andrewm@46
|
95 #define BEAGLERT_FLAG_ANALOG_OUTPUTS_PERSIST (1 << 1) // Set if analog/digital outputs persist for future buffers
|
andrewm@46
|
96
|
andrewm@47
|
97 /**
|
andrewm@47
|
98 * \ingroup control
|
andrewm@47
|
99 * \brief Structure containing initialisation parameters for the real-time
|
andrewm@47
|
100 * audio control system.
|
andrewm@47
|
101 *
|
andrewm@47
|
102 * This structure is initialised using BeagleRT_defaultSettings(). Its contents
|
andrewm@47
|
103 * are used up through the point of calling
|
andrewm@47
|
104 * BeagleRT_initAudio() at which point it is no longer needed.
|
andrewm@47
|
105 */
|
andrewm@46
|
106 typedef struct {
|
andrewm@46
|
107 // These items might be adjusted by the user:
|
andrewm@46
|
108
|
andrewm@47
|
109 /// \brief Number of (analog) frames per period.
|
andrewm@47
|
110 ///
|
andrewm@47
|
111 /// Number of audio frames depends on relative sample rates of the two. By default,
|
andrewm@47
|
112 /// audio is twice the sample rate, so has twice the period size.
|
andrewm@47
|
113 int periodSize;
|
andrewm@47
|
114 /// Whether to use the analog input and output
|
andrewm@47
|
115 int useAnalog;
|
andrewm@47
|
116 /// Whether to use the 16 programmable GPIOs
|
andrewm@47
|
117 int useDigital;
|
andrewm@47
|
118 /// How many channels for the ADC and DAC
|
andrewm@47
|
119 int numAnalogChannels;
|
andrewm@47
|
120 /// How many channels for the GPIOs
|
andrewm@47
|
121 int numDigitalChannels;
|
andrewm@46
|
122
|
andrewm@47
|
123 /// Whether to begin with the speakers muted
|
andrewm@47
|
124 int beginMuted;
|
andrewm@47
|
125 /// Level for the audio DAC output
|
andrewm@47
|
126 float dacLevel;
|
andrewm@47
|
127 /// Level for the audio ADC input
|
andrewm@47
|
128 float adcLevel;
|
giuliomoro@171
|
129 /// Gains for the PGA, left and right channels
|
giuliomoro@171
|
130 float pgaGain[2];
|
andrewm@47
|
131 /// Level for the headphone output
|
andrewm@47
|
132 float headphoneLevel;
|
andrewm@47
|
133
|
andrewm@47
|
134 /// The external .bin file to load. If empty will use PRU code from pru_rtaudio_bin.h
|
andrewm@47
|
135 char pruFilename[MAX_PRU_FILENAME_LENGTH];
|
andrewm@47
|
136 /// Whether to use verbose logging
|
andrewm@47
|
137 int verbose;
|
andrewm@46
|
138
|
andrewm@46
|
139 // These items are application-dependent but should probably be
|
andrewm@46
|
140 // determined by the programmer rather than the user
|
andrewm@47
|
141
|
andrewm@47
|
142 /// Whether audio/analog data should be interleaved
|
andrewm@47
|
143 int interleave;
|
andrewm@47
|
144 /// \brief Whether analog outputs should persist to future frames.
|
andrewm@47
|
145 ///
|
andrewm@47
|
146 /// n.b. digital pins always persist, audio never does
|
andrewm@47
|
147 int analogOutputsPersist;
|
andrewm@46
|
148
|
andrewm@46
|
149 // These items are hardware-dependent and should only be changed
|
andrewm@46
|
150 // to run on different hardware
|
andrewm@47
|
151
|
andrewm@47
|
152 /// Where the codec can be found on the I2C bus
|
andrewm@47
|
153 int codecI2CAddress;
|
andrewm@47
|
154 /// Pin where amplifier mute can be found
|
andrewm@47
|
155 int ampMutePin;
|
andrewm@47
|
156 /// Port where the UDP server will listen
|
andrewm@47
|
157 int receivePort;
|
andrewm@47
|
158 /// Port where the UDP client will transmit
|
andrewm@47
|
159 int transmitPort;
|
andrewm@46
|
160 char serverName[MAX_SERVERNAME_LENGTH];
|
andrewm@46
|
161 } BeagleRTInitSettings;
|
andrewm@46
|
162
|
andrewm@46
|
163
|
andrewm@47
|
164 /**
|
andrewm@47
|
165 * \ingroup render
|
andrewm@47
|
166 * \brief Structure holding current audio and sensor settings and pointers to data buffers.
|
andrewm@47
|
167 *
|
andrewm@56
|
168 * This structure is passed to setup(), render() and cleanup(). It is
|
andrewm@47
|
169 * initialised in BeagleRT_initAudio() based on the contents of the BeagleRTInitSettings
|
andrewm@47
|
170 * structure.
|
andrewm@47
|
171 */
|
andrewm@46
|
172 typedef struct {
|
andrewm@47
|
173 /// \brief Buffer holding audio input samples
|
andrewm@47
|
174 ///
|
andrewm@47
|
175 /// This buffer may be in either interleaved or non-interleaved format,
|
andrewm@47
|
176 /// depending on the contents of the BeagleRTInitSettings structure.
|
andrewm@47
|
177 /// \b Note: this element is available in render() only.
|
andrewm@46
|
178 float *audioIn;
|
andrewm@47
|
179
|
andrewm@47
|
180 /// \brief Buffer holding audio output samples
|
andrewm@47
|
181 ///
|
andrewm@47
|
182 /// This buffer may be in either interleaved or non-interleaved format,
|
andrewm@47
|
183 /// depending on the contents of the BeagleRTInitSettings structure.
|
andrewm@47
|
184 /// \b Note: this element is available in render() only.
|
andrewm@46
|
185 float *audioOut;
|
andrewm@47
|
186
|
andrewm@47
|
187 /// \brief Buffer holding analog input samples
|
andrewm@47
|
188 ///
|
andrewm@47
|
189 /// This buffer may be in either interleaved or non-interleaved format,
|
andrewm@47
|
190 /// depending on the contents of the BeagleRTInitSettings structure.
|
andrewm@47
|
191 /// \b Note: this element is available in render() only.
|
andrewm@46
|
192 float *analogIn;
|
andrewm@47
|
193
|
andrewm@47
|
194 /// \brief Buffer holding analog output samples
|
andrewm@47
|
195 ///
|
andrewm@47
|
196 /// This buffer may be in either interleaved or non-interleaved format,
|
andrewm@47
|
197 /// depending on the contents of the BeagleRTInitSettings structure.
|
andrewm@47
|
198 /// \b Note: this element is available in render() only.
|
andrewm@46
|
199 float *analogOut;
|
andrewm@47
|
200
|
andrewm@47
|
201 /// \brief Buffer holding digital input/output samples
|
andrewm@47
|
202 ///
|
andrewm@47
|
203 /// \b Note: this element is available in render() only.
|
andrewm@46
|
204 uint32_t *digital;
|
andrewm@46
|
205
|
andrewm@47
|
206 /// Number of audio frames per period
|
andrewm@46
|
207 uint32_t audioFrames;
|
andrewm@47
|
208 /// Number of audio channels (currently always 2)
|
andrewm@46
|
209 uint32_t audioChannels;
|
andrewm@47
|
210 /// Audio sample rate in Hz (currently always 44100.0)
|
andrewm@46
|
211 float audioSampleRate;
|
andrewm@46
|
212
|
andrewm@47
|
213 /// \brief Number of analog frames per period
|
andrewm@47
|
214 ///
|
andrewm@47
|
215 /// This will be 0 if analog I/O is disabled.
|
andrewm@46
|
216 uint32_t analogFrames;
|
andrewm@47
|
217
|
andrewm@47
|
218 /// \brief Number of analog channels
|
andrewm@47
|
219 ///
|
andrewm@47
|
220 /// This could take a value of 8, 4 or 2. This will be 0 if analog I/O is disabled.
|
andrewm@46
|
221 uint32_t analogChannels;
|
andrewm@47
|
222
|
andrewm@47
|
223 /// \brief Analog sample rate in Hz
|
andrewm@47
|
224 ///
|
andrewm@47
|
225 /// The analog sample rate depends on the number of analog channels used. If
|
andrewm@47
|
226 /// 8 channels are used, the sample rate is 22050. If 4 channels are used, the sample
|
andrewm@47
|
227 /// rate is 44100. If 2 channels are used, the sample rate is 88200. If analog I/O
|
andrewm@47
|
228 /// is disabled, the sample rate is 0.
|
andrewm@46
|
229 float analogSampleRate;
|
andrewm@46
|
230
|
andrewm@47
|
231 /// Number of digital frames per period
|
andrewm@46
|
232 uint32_t digitalFrames;
|
andrewm@47
|
233 /// \brief Number of digital channels
|
andrewm@47
|
234 ///
|
andrewm@47
|
235 /// Currently this will always be 16, unless digital I/O is disabled, in which case it will be 0.
|
andrewm@46
|
236 uint32_t digitalChannels;
|
andrewm@47
|
237 /// Digital sample rate in Hz (currently always 44100.0)
|
andrewm@46
|
238 float digitalSampleRate;
|
andrewm@46
|
239
|
andrewm@47
|
240 /// \brief Number of elapsed audio samples since the start of rendering.
|
andrewm@47
|
241 ///
|
andrewm@47
|
242 /// This holds the total number of audio samples as of the beginning of the current period. To
|
andrewm@47
|
243 /// find the current number of analog or digital samples elapsed, multiply by the ratio of the
|
andrewm@47
|
244 /// sample rates (e.g. half the number of analog samples will have elapsed if the analog sample
|
andrewm@47
|
245 /// rate is 22050).
|
andrewm@46
|
246 uint64_t audioSampleCount;
|
andrewm@47
|
247
|
andrewm@47
|
248 /// \brief Other audio/sensor settings
|
andrewm@47
|
249 ///
|
andrewm@47
|
250 /// Binary combination of flags including:
|
andrewm@47
|
251 ///
|
andrewm@47
|
252 /// BEAGLERT_FLAG_INTERLEAVED: indicates the audio and analog buffers are interleaved
|
andrewm@47
|
253 ///
|
andrewm@47
|
254 /// BEAGLERT_FLAG_ANALOG_OUTPUTS_PERSIST: indicates that writes to the analog outputs will
|
andrewm@47
|
255 /// persist for future frames. If not set, writes affect one frame only.
|
andrewm@46
|
256 uint32_t flags;
|
andrewm@46
|
257 } BeagleRTContext;
|
andrewm@46
|
258
|
andrewm@47
|
259 /** \ingroup auxtask
|
andrewm@47
|
260 *
|
andrewm@47
|
261 * Auxiliary task variable. Auxiliary tasks are created using createAuxiliaryTask() and
|
andrewm@56
|
262 * automatically cleaned up after cleanup() finishes.
|
andrewm@47
|
263 */
|
andrewm@46
|
264 typedef void* AuxiliaryTask; // Opaque data type to keep track of aux tasks
|
andrewm@46
|
265
|
andrewm@47
|
266 /** \ingroup render
|
andrewm@47
|
267 *
|
andrewm@47
|
268 * Flag that indicates when the audio will stop. Threads can poll this variable to indicate when
|
andrewm@47
|
269 * they should stop. Additionally, a program can set this to \c true
|
andrewm@47
|
270 * to indicate that audio processing should terminate. Calling BeagleRT_stopAudio()
|
andrewm@47
|
271 * has the effect of setting this to \c true.
|
andrewm@47
|
272 */
|
andrewm@46
|
273 extern bool gShouldStop;
|
andrewm@46
|
274
|
andrewm@46
|
275 // *** User-defined render functions ***
|
andrewm@46
|
276
|
andrewm@46
|
277 /**
|
andrewm@47
|
278 * \defgroup render User-defined render functions
|
andrewm@47
|
279 *
|
andrewm@47
|
280 * These three functions must be implemented by the developer in every BeagleRT program.
|
andrewm@47
|
281 * Typically they appear in their own .cpp source file.
|
andrewm@47
|
282 *
|
andrewm@47
|
283 * @{
|
andrewm@47
|
284 */
|
andrewm@47
|
285
|
andrewm@47
|
286 /**
|
andrewm@46
|
287 * \brief User-defined initialisation function which runs before audio rendering begins.
|
andrewm@46
|
288 *
|
andrewm@46
|
289 * This function runs once at the beginning of the program, after most of the system
|
andrewm@46
|
290 * initialisation has begun but before audio rendering starts. Use it to prepare any
|
andrewm@46
|
291 * memory or resources that will be needed in render().
|
andrewm@46
|
292 *
|
andrewm@46
|
293 * \param context Data structure holding information on sample rates, numbers of channels,
|
andrewm@46
|
294 * frame sizes and other state. Note: the buffers for audio, analog and digital data will
|
andrewm@46
|
295 * \b not yet be available to use. Do not attempt to read or write audio or sensor data
|
andrewm@56
|
296 * in setup().
|
andrewm@46
|
297 * \param userData An opaque pointer to an optional user-defined data structure. Whatever
|
andrewm@46
|
298 * is passed as the second argument to BeagleRT_initAudio() will appear here.
|
andrewm@46
|
299 *
|
andrewm@46
|
300 * \return true on success, or false if an error occurred. If no initialisation is
|
andrewm@56
|
301 * required, setup() should return true.
|
andrewm@46
|
302 */
|
andrewm@56
|
303 bool setup(BeagleRTContext *context, void *userData);
|
andrewm@46
|
304
|
andrewm@46
|
305 /**
|
andrewm@46
|
306 * \brief User-defined callback function to process audio and sensor data.
|
andrewm@46
|
307 *
|
andrewm@46
|
308 * This function is called regularly by the system every time there is a new block of
|
andrewm@46
|
309 * audio and/or sensor data to process. Your code should process the requested samples
|
andrewm@46
|
310 * of data, store the results within \c context, and return.
|
andrewm@46
|
311 *
|
andrewm@46
|
312 * \param context Data structure holding buffers for audio, analog and digital data. The
|
andrewm@46
|
313 * structure also holds information on numbers of channels, frame sizes and sample rates,
|
andrewm@46
|
314 * which are guaranteed to remain the same throughout the program and to match what was
|
andrewm@56
|
315 * passed to setup().
|
andrewm@46
|
316 * \param userData An opaque pointer to an optional user-defined data structure. Will
|
andrewm@56
|
317 * be the same as the \c userData parameter passed to setup().
|
andrewm@46
|
318 */
|
andrewm@46
|
319 void render(BeagleRTContext *context, void *userData);
|
andrewm@46
|
320
|
andrewm@46
|
321 /**
|
andrewm@46
|
322 * \brief User-defined cleanup function which runs when the program finishes.
|
andrewm@46
|
323 *
|
andrewm@46
|
324 * This function is called by the system once after audio rendering has finished, before the
|
andrewm@56
|
325 * program quits. Use it to release any memory allocated in setup() and to perform
|
andrewm@56
|
326 * any other required cleanup. If no initialisation is performed in setup(), then
|
andrewm@46
|
327 * this function will usually be empty.
|
andrewm@46
|
328 *
|
andrewm@46
|
329 * \param context Data structure holding information on sample rates, numbers of channels,
|
andrewm@46
|
330 * frame sizes and other state. Note: the buffers for audio, analog and digital data will
|
andrewm@46
|
331 * no longer be available to use. Do not attempt to read or write audio or sensor data
|
andrewm@56
|
332 * in cleanup().
|
andrewm@46
|
333 * \param userData An opaque pointer to an optional user-defined data structure. Will
|
andrewm@56
|
334 * be the same as the \c userData parameter passed to setup() and render().
|
andrewm@46
|
335 */
|
andrewm@56
|
336 void cleanup(BeagleRTContext *context, void *userData);
|
andrewm@46
|
337
|
andrewm@47
|
338 /** @} */
|
andrewm@47
|
339
|
andrewm@47
|
340 /**
|
andrewm@47
|
341 * \defgroup control Control and command line functions
|
andrewm@47
|
342 *
|
andrewm@47
|
343 * These functions are used to initialise the BeagleRT settings, process arguments
|
andrewm@47
|
344 * from the command line, and start/stop the audio and sensor system.
|
andrewm@47
|
345 *
|
andrewm@47
|
346 * @{
|
andrewm@47
|
347 */
|
andrewm@47
|
348
|
andrewm@46
|
349 // *** Command-line settings ***
|
andrewm@46
|
350
|
andrewm@46
|
351 /**
|
andrewm@46
|
352 * \brief Initialise the data structure containing settings for BeagleRT.
|
andrewm@46
|
353 *
|
andrewm@46
|
354 * This function should be called in main() before parsing any command-line arguments. It
|
andrewm@46
|
355 * sets default values in the data structure which specifies the BeagleRT settings, including
|
andrewm@46
|
356 * frame sizes, numbers of channels, volume levels and other parameters.
|
andrewm@46
|
357 *
|
andrewm@46
|
358 * \param settings Structure holding initialisation data for BeagleRT.
|
andrewm@46
|
359 */
|
andrewm@46
|
360 void BeagleRT_defaultSettings(BeagleRTInitSettings *settings);
|
andrewm@46
|
361
|
andrewm@46
|
362 /**
|
andrewm@46
|
363 * \brief Get long options from command line argument list, including BeagleRT standard options
|
andrewm@46
|
364 *
|
andrewm@46
|
365 * This function should be used in main() to process command line options, in place of the
|
andrewm@46
|
366 * standard library getopt_long(). Internally, it parses standard BeagleRT command-line options,
|
andrewm@46
|
367 * storing the results in the settings data structure. Any options which are not part of the
|
andrewm@46
|
368 * BeagleRT standard options will be returned, as they would normally be in getopt_long().
|
andrewm@46
|
369 *
|
andrewm@46
|
370 * \param argc Number of command line options, as passed to main().
|
andrewm@46
|
371 * \param argv Array of command line options, as passed to main().
|
andrewm@46
|
372 * \param customShortOptions List of short options to be parsed, analogous to getopt_long(). This
|
andrewm@46
|
373 * list should not include any characters already parsed as part of the BeagleRT standard options.
|
andrewm@46
|
374 * \param customLongOptions List of long options to parsed, analogous to getopt_long(). This
|
andrewm@46
|
375 * list should not include any long options already parsed as part of the BeagleRT standard options.
|
andrewm@46
|
376 * \param settings Data structure holding initialisation settings for BeagleRT. Any standard options
|
andrewm@46
|
377 * parsed will automatically update this data structure.
|
andrewm@46
|
378 *
|
andrewm@46
|
379 * \return Value of the next option parsed which is not a BeagleRT standard option, or -1 when the
|
andrewm@46
|
380 * argument list has been exhausted. Similar to the return value of getopt_long() except that BeagleRT
|
andrewm@46
|
381 * standard options are handled internally and not returned.
|
andrewm@46
|
382 */
|
andrewm@46
|
383 int BeagleRT_getopt_long(int argc, char *argv[], const char *customShortOptions,
|
andrewm@46
|
384 const struct option *customLongOptions, BeagleRTInitSettings *settings);
|
andrewm@46
|
385
|
andrewm@46
|
386 /**
|
andrewm@46
|
387 * \brief Print usage information for BeagleRT standard options.
|
andrewm@46
|
388 *
|
andrewm@46
|
389 * This function should be called from your code wherever you wish to print usage information for the
|
andrewm@46
|
390 * user. It will print usage information on BeagleRT standard options, after which you can print usage
|
andrewm@46
|
391 * information for your own custom options.
|
andrewm@46
|
392 */
|
andrewm@46
|
393 void BeagleRT_usage();
|
andrewm@46
|
394
|
andrewm@46
|
395 /**
|
andrewm@46
|
396 * \brief Set level of verbose (debugging) printing.
|
andrewm@46
|
397 *
|
andrewm@46
|
398 * \param level Verbosity level of the internal BeagleRT system. 0 by default; higher values will
|
andrewm@46
|
399 * print more information. Presently all positive numbers produce the same level of printing.
|
andrewm@46
|
400 */
|
andrewm@46
|
401 void BeagleRT_setVerboseLevel(int level);
|
andrewm@46
|
402
|
andrewm@47
|
403
|
andrewm@46
|
404 // *** Audio control functions ***
|
andrewm@46
|
405
|
andrewm@46
|
406 /**
|
andrewm@46
|
407 * \brief Initialise audio and sensor rendering environment.
|
andrewm@46
|
408 *
|
andrewm@46
|
409 * This function prepares audio rendering in BeagleRT. It should be called from main() sometime
|
andrewm@46
|
410 * after command line option parsing has finished. It will initialise the rendering system, which
|
andrewm@56
|
411 * in the process will result in a call to the user-defined setup() function.
|
andrewm@46
|
412 *
|
andrewm@46
|
413 * \param settings Data structure holding system settings, including numbers of channels, frame sizes,
|
andrewm@46
|
414 * volume levels and other information.
|
andrewm@46
|
415 * \param userData An opaque pointer to a user-defined data structure which will be passed to
|
andrewm@56
|
416 * setup(), render() and cleanup(). You can use this to pass custom information
|
andrewm@46
|
417 * to the rendering functions, as an alternative to using global variables.
|
andrewm@46
|
418 *
|
andrewm@46
|
419 * \return 0 on success, or nonzero if an error occurred.
|
andrewm@46
|
420 */
|
andrewm@46
|
421 int BeagleRT_initAudio(BeagleRTInitSettings *settings, void *userData);
|
andrewm@46
|
422
|
andrewm@46
|
423 /**
|
andrewm@46
|
424 * \brief Begin processing audio and sensor data.
|
andrewm@46
|
425 *
|
andrewm@46
|
426 * This function will start the BeagleRT audio/sensor system. After this function is called, the
|
andrewm@46
|
427 * system will make periodic calls to render() until BeagleRT_stopAudio() is called.
|
andrewm@46
|
428 *
|
andrewm@46
|
429 * \return 0 on success, or nonzero if an error occurred.
|
andrewm@46
|
430 */
|
andrewm@46
|
431 int BeagleRT_startAudio();
|
andrewm@46
|
432
|
andrewm@46
|
433 /**
|
andrewm@46
|
434 * \brief Stop processing audio and sensor data.
|
andrewm@46
|
435 *
|
andrewm@46
|
436 * This function will stop the BeagleRT audio/sensor system. After this function returns, no further
|
andrewm@46
|
437 * calls to render() will be issued.
|
andrewm@46
|
438 */
|
andrewm@46
|
439 void BeagleRT_stopAudio();
|
andrewm@46
|
440
|
andrewm@46
|
441 /**
|
andrewm@46
|
442 * \brief Clean up resources from audio and sensor processing.
|
andrewm@46
|
443 *
|
andrewm@46
|
444 * This function should only be called after BeagleRT_stopAudio(). It will release any
|
andrewm@46
|
445 * internal resources for audio and sensor processing. In the process, it will call the
|
andrewm@56
|
446 * user-defined cleanup() function.
|
andrewm@46
|
447 */
|
andrewm@46
|
448 void BeagleRT_cleanupAudio();
|
andrewm@46
|
449
|
andrewm@47
|
450 /** @} */
|
andrewm@47
|
451
|
andrewm@47
|
452 /**
|
andrewm@47
|
453 * \defgroup levels Audio level controls
|
andrewm@47
|
454 *
|
andrewm@47
|
455 * These functions control the input and output levels for the audio codec. If a BeagleRT program
|
andrewm@47
|
456 * does not call these functions, sensible default levels will be used.
|
andrewm@47
|
457 *
|
andrewm@47
|
458 * @{
|
andrewm@47
|
459 */
|
andrewm@46
|
460
|
andrewm@46
|
461 // *** Volume and level controls ***
|
andrewm@46
|
462
|
andrewm@46
|
463 /**
|
andrewm@46
|
464 * \brief Set the level of the audio DAC.
|
andrewm@46
|
465 *
|
andrewm@46
|
466 * This function sets the level of all audio outputs (headphone, line, speaker). It does
|
andrewm@46
|
467 * not affect the level of the (non-audio) analog outputs.
|
andrewm@46
|
468 *
|
andrewm@46
|
469 * \b Important: do not call this function from within render(), as it does not make
|
andrewm@46
|
470 * any guarantees on real-time performance.
|
andrewm@46
|
471 *
|
andrewm@46
|
472 * \param decibels Level of the DAC output. Valid levels range from -63.5 (lowest) to
|
andrewm@46
|
473 * 0 (highest) in steps of 0.5dB. Levels between increments of 0.5 will be rounded down.
|
andrewm@46
|
474 *
|
andrewm@46
|
475 * \return 0 on success, or nonzero if an error occurred.
|
andrewm@46
|
476 */
|
andrewm@46
|
477 int BeagleRT_setDACLevel(float decibels);
|
andrewm@46
|
478
|
andrewm@46
|
479 /**
|
andrewm@46
|
480 * \brief Set the level of the audio ADC.
|
andrewm@46
|
481 *
|
andrewm@46
|
482 * This function sets the level of the audio input. It does not affect the level of the
|
andrewm@46
|
483 * (non-audio) analog inputs.
|
andrewm@46
|
484 *
|
andrewm@46
|
485 * \b Important: do not call this function from within render(), as it does not make
|
andrewm@46
|
486 * any guarantees on real-time performance.
|
andrewm@46
|
487 *
|
andrewm@46
|
488 * \param decibels Level of the ADC input. Valid levels range from -12 (lowest) to
|
andrewm@46
|
489 * 0 (highest) in steps of 1.5dB. Levels between increments of 1.5 will be rounded down.
|
andrewm@46
|
490 *
|
andrewm@46
|
491 * \return 0 on success, or nonzero if an error occurred.
|
andrewm@46
|
492 */
|
andrewm@46
|
493 int BeagleRT_setADCLevel(float decibels);
|
andrewm@46
|
494
|
giuliomoro@171
|
495
|
giuliomoro@171
|
496 /**
|
giuliomoro@171
|
497 * \brief Set the gain of the audio preamplifier.
|
giuliomoro@171
|
498 *
|
giuliomoro@171
|
499 * This function sets the level of the Programmable Gain Amplifier(PGA), which
|
giuliomoro@171
|
500 * amplifies the signal before the ADC.
|
giuliomoro@171
|
501 *
|
giuliomoro@171
|
502 * \b Important: do not call this function from within render(), as it does not make
|
giuliomoro@171
|
503 * any guarantees on real-time performance.
|
giuliomoro@171
|
504 *
|
giuliomoro@171
|
505 * \param decibels Level of the PGA Valid levels range from 0 (lowest) to
|
giuliomoro@171
|
506 * 59.5 (highest) in steps of 0.5dB. Levels between increments of 0.5 will be rounded.
|
giuliomoro@171
|
507 * \param channel Specifies which channel to apply the gain to. Channel 0 is left,
|
giuliomoro@171
|
508 * channel 1 is right
|
giuliomoro@171
|
509 *
|
giuliomoro@171
|
510 * \return 0 on success, or nonzero if an error occurred.
|
giuliomoro@171
|
511 */
|
giuliomoro@171
|
512 int BeagleRT_setPgaGain(float decibels, int channel);
|
giuliomoro@171
|
513
|
andrewm@46
|
514 /**
|
andrewm@46
|
515 * \brief Set the level of the onboard headphone amplifier.
|
andrewm@46
|
516 *
|
andrewm@46
|
517 * This function sets the level of the headphone output only (3-pin connector on the BeagleRT
|
andrewm@46
|
518 * cape or the output jack on the BeagleBone Audio Cape). It does not affect the level of the
|
andrewm@46
|
519 * speakers or the line out pads on the cape.
|
andrewm@46
|
520 *
|
andrewm@46
|
521 * \b Important: do not call this function from within render(), as it does not make
|
andrewm@46
|
522 * any guarantees on real-time performance.
|
andrewm@46
|
523 *
|
andrewm@46
|
524 * \param decibels Level of the DAC output. Valid levels range from -63.5 (lowest) to
|
andrewm@46
|
525 * 0 (highest) in steps of 0.5dB. Levels between increments of 0.5 will be rounded down.
|
andrewm@46
|
526 *
|
andrewm@46
|
527 * \return 0 on success, or nonzero if an error occurred.
|
andrewm@46
|
528 */
|
andrewm@46
|
529 int BeagleRT_setHeadphoneLevel(float decibels);
|
andrewm@46
|
530
|
andrewm@46
|
531 /**
|
andrewm@46
|
532 * \brief Mute or unmute the onboard speaker amplifiers.
|
andrewm@46
|
533 *
|
andrewm@46
|
534 * This function mutes or unmutes the amplifiers on the BeagleRT cape. Whether the speakers begin
|
andrewm@46
|
535 * muted or unmuted depends on the BeagleRTInitSettings structure passed to BeagleRT_initAudio().
|
andrewm@46
|
536 *
|
andrewm@46
|
537 * \b Important: do not call this function from within render(), as it does not make
|
andrewm@46
|
538 * any guarantees on real-time performance.
|
andrewm@46
|
539 *
|
andrewm@46
|
540 * \param mute 0 to enable the speakers, nonzero to mute the speakers.
|
andrewm@46
|
541 *
|
andrewm@46
|
542 * \return 0 on success, or nonzero if an error occurred.
|
andrewm@46
|
543 */
|
andrewm@46
|
544 int BeagleRT_muteSpeakers(int mute);
|
andrewm@46
|
545
|
andrewm@47
|
546 /** @} */
|
andrewm@47
|
547
|
andrewm@47
|
548 /**
|
andrewm@47
|
549 * \defgroup auxtask Auxiliary task support
|
andrewm@47
|
550 *
|
andrewm@47
|
551 * These functions are used to create separate real-time tasks (threads) which run at lower
|
andrewm@47
|
552 * priority than the audio processing. They can be used, for example, for large time-consuming
|
andrewm@47
|
553 * calculations which would take more than one audio frame length to process, or they could be
|
andrewm@47
|
554 * used to communicate with external hardware when that communication might block or be delayed.
|
andrewm@47
|
555 *
|
andrewm@56
|
556 * All auxiliary tasks used by the program should be created in setup(). The tasks
|
andrewm@47
|
557 * can then be scheduled at will within the render() function.
|
andrewm@47
|
558 *
|
andrewm@47
|
559 * @{
|
andrewm@47
|
560 */
|
andrewm@47
|
561
|
andrewm@46
|
562 // *** Functions for creating auxiliary tasks ***
|
andrewm@46
|
563
|
andrewm@46
|
564 /**
|
andrewm@46
|
565 * \brief Create a new auxiliary task.
|
andrewm@46
|
566 *
|
andrewm@46
|
567 * This function creates a new auxiliary task which, when scheduled, runs the function specified
|
andrewm@46
|
568 * in the first argument. Note that the task does not run until scheduleAuxiliaryTask() is called.
|
andrewm@56
|
569 * Auxiliary tasks should be created in setup() and never in render() itself.
|
andrewm@46
|
570 *
|
andrewm@46
|
571 * The second argument specifies the real-time priority. Valid values are between 0
|
andrewm@47
|
572 * and 99, and usually should be lower than \ref BEAGLERT_AUDIO_PRIORITY. Tasks with higher priority always
|
andrewm@46
|
573 * preempt tasks with lower priority.
|
andrewm@46
|
574 *
|
andrewm@46
|
575 * \param functionToCall Function which will run each time the auxiliary task is scheduled.
|
andrewm@46
|
576 * \param priority Xenomai priority level at which the task should run.
|
andrewm@47
|
577 * \param name Name for this task, which should be unique system-wide (no other running program should use this name).
|
andrewm@46
|
578 */
|
andrewm@47
|
579 AuxiliaryTask BeagleRT_createAuxiliaryTask(void (*functionToCall)(void), int priority, const char *name);
|
andrewm@46
|
580
|
andrewm@46
|
581 /**
|
andrewm@46
|
582 * \brief Run an auxiliary task which has previously been created.
|
andrewm@46
|
583 *
|
andrewm@46
|
584 * This function will schedule an auxiliary task to run. When the task runs, the function in the first
|
andrewm@46
|
585 * argument of createAuxiliaryTaskLoop() will be called.
|
andrewm@46
|
586 *
|
andrewm@46
|
587 * scheduleAuxiliaryTask() is typically called from render() to start a lower-priority task. The function
|
andrewm@46
|
588 * will not run immediately, but only once any active higher priority tasks have finished.
|
andrewm@46
|
589 *
|
andrewm@46
|
590 * \param task Task to schedule for running.
|
andrewm@46
|
591 */
|
andrewm@47
|
592 void BeagleRT_scheduleAuxiliaryTask(AuxiliaryTask task);
|
andrewm@47
|
593
|
andrewm@47
|
594 /** @} */
|
andrewm@46
|
595
|
andrewm@46
|
596 #endif /* BEAGLERT_H_ */
|