libdriver / syn6288

SYN6288 full function driver library for general MCU and Linux.

Home Page:https://www.libdriver.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어

LibDriver SYN6288

MISRA API License

SYN6288 Chinese speech synthesis chip is a middle and high-end speech synthesis chip with higher cost performance and more natural effect launched by Beijing Yuyintianxia Technology Co., Ltd. in early 2010. SYN6288 receives the text to be synthesized through the asynchronous serial port to realize the text to sound (TTS) conversion. The latest SYN6288 speech synthesis chip inherits the excellent features of OSYNO6188 : the smallest SSOP28L chip package, simple hardware interface and high cost performance; In addition, SYN6288 text recognition is more intelligent, speech synthesis is more natural, and speech synthesis effect and intelligent recognition effect are greatly improved. It is a speech synthesis chip for high-end applications.

LibDriver SYN6288 is the full function driver of SYN6288 launched by LibDriver.It provides text synthesis, music synthesis, alarm sound synthesis and other functions. LibDriver is MISRA compliant.

Table of Contents

Instruction

/src includes LibDriver SYN6288 source files.

/interface includes LibDriver SYN6288 UART platform independent template.

/test includes LibDriver SYN6288 driver test code and this code can test the chip necessary function simply.

/example includes LibDriver SYN6288 sample code.

/doc includes LibDriver SYN6288 offline document.

/datasheet includes SYN6288 datasheet.

/project includes the common Linux and MCU development board sample code. All projects use the shell script to debug the driver and the detail instruction can be found in each project's README.md.

/misra includes the LibDriver MISRA code scanning results.

Install

Reference /interface UART platform independent template and finish your platform UART driver.

Add the /src directory, the interface driver for your platform, and your own drivers to your project, if you want to use the default example drivers, add the /example directory to your project.

Usage

You can refer to the examples in the /example directory to complete your own driver. If you want to use the default programming examples, here's how to use them.

example basic

#include "driver_syn6288_basic.h"

uint8_t res;

res = syn6288_basic_init();
if (res != 0)
{
    return 1;
}

...

res = syn6288_basic_synthesis("你好");
if (res != 0)
{
    (void)syn6288_basic_deinit();

    return 1;
}
(void)syn6288_basic_sync();

...

(void)syn6288_basic_deinit();

return 0;

example advance

#include "driver_syn6288_advance.h"

uint8_t res;

res = syn6288_advance_init();
if (res != 0)
{
    return 1;
}

...

res = syn6288_advance_synthesis("你好");
if (res != 0)
{
    (void)syn6288_advance_deinit();

    return 1;
}
(void)syn6288_advance_sync();

...

res = syn6288_advance_sound(SYN6288_SOUND_A);
if (res != 0)
{
    (void)syn6288_advance_deinit();

    return 1;
}
(void)syn6288_advance_sync()    

...
    
res = syn6288_advance_message(SYN6288_MESSAGE_A);
if (res != 0)
{
    (void)syn6288_advance_deinit();

    return 1;
}
(void)syn6288_advance_sync();

...

res = syn6288_advance_ring(SYN6288_RING_A);
if (res != 0)
{
    (void)syn6288_advance_deinit();

    return 1;
}
(void)syn6288_advance_sync();

...
    
(void)syn6288_advance_deinit();

return 0;

Document

Online documents: https://www.libdriver.com/docs/syn6288/index.html.

Offline documents: /doc/html/index.html.

Contributing

Please refer to CONTRIBUTING.md.

License

Copyright (c) 2015 - present LibDriver All rights reserved

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy

of this software and associated documentation files (the "Software"), to deal

in the Software without restriction, including without limitation the rights

to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

copies of the Software, and to permit persons to whom the Software is

furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all

copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

SOFTWARE.

Contact Us

Please sent an e-mail to lishifenging@outlook.com.

About

SYN6288 full function driver library for general MCU and Linux.

https://www.libdriver.com

License:MIT License


Languages

Language:C 99.5%Language:Assembly 0.4%Language:CMake 0.1%Language:Makefile 0.0%Language:Batchfile 0.0%