aboutsummaryrefslogtreecommitdiff
path: root/stm32/inc/sounds.h
blob: 9ccfeb733754918d8cec5bc9c68c2b5e21b28810 (plain)
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
#ifndef _SOUNDS_H
#define _SOUNDS_H
/*!
 * Sound effect library.
 *
 * This provides some sound effects for the SM1000 UI.
 *
 * Author Stuart Longland <[email protected]>
 * Copyright (C) 2015 FreeDV project.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 2.1,
 * as published by the Free Software Foundation.  This program 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 Lesser General Public
 * License along with this program; if not, see
 * <http://www.gnu.org/licenses/>.
 */

#include "sfx.h"

/*! Start-up tune / selected tune */
extern const struct sfx_note_t sound_startup[];

/*! Returned tune */
extern const struct sfx_note_t sound_returned[];

/*! Click sound */
extern const struct sfx_note_t sound_click[];

/*! Death march tune */
extern const struct sfx_note_t sound_death_march[];

#endif