R2000: Add "out of order" audio output

This commit is contained in:
Andreas Eversberg
2024-08-18 00:56:46 +02:00
parent 9d8c9d8986
commit b24c9f889d
4 changed files with 6820 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ radiocom2000_SOURCES = \
dsp.c \
frame.c \
tones.c \
outoforder.c \
image.c \
main.c
radiocom2000_LDADD = \

View File

@@ -34,6 +34,7 @@
#include "dsp.h"
#include "frame.h"
#include "tones.h"
#include "outoforder.h"
/* settings */
static int band = 1;
@@ -261,6 +262,7 @@ int main(int argc, char *argv[])
/* init tones */
init_radiocom_tones();
init_outoforder();
/* init mobile interface */
main_mobile_init("0123456789", number_lengths, NULL, r2000_number_valid);

6814
src/r2000/outoforder.c Normal file

File diff suppressed because it is too large Load Diff

3
src/r2000/outoforder.h Normal file
View File

@@ -0,0 +1,3 @@
void init_outoforder(void);