updated ui added new features

This commit is contained in:
zach
2025-12-27 15:32:32 -07:00
parent 02ca7801ea
commit a2cfae3a22
589 changed files with 181780 additions and 569 deletions
+18
View File
@@ -0,0 +1,18 @@
/*---------------------------------------------------------------------------*\
FILE........: thash.c
AUTHOR......: David Rowe
DATE CREATED: July 2020
Simple test program for freeDV API get hash function
\*---------------------------------------------------------------------------*/
#include <stdio.h>
#include "freedv_api.h"
int main(void) {
printf("%s\n", freedv_get_hash());
return 0;
}