![]() |
LibDriver SYN6658
|
driver syn6658 source file More...
Go to the source code of this file.
Macros | |
| #define | CHIP_NAME "Voicetx SYN6658" |
| chip information definition | |
| #define | MANUFACTURER_NAME "Voicetx" |
| #define | SUPPLY_VOLTAGE_MIN 3.1f |
| #define | SUPPLY_VOLTAGE_MAX 4.5f |
| #define | MAX_CURRENT 53.0f |
| #define | TEMPERATURE_MIN -40.0f |
| #define | TEMPERATURE_MAX 85.0f |
| #define | DRIVER_VERSION 1000 |
Functions | |
| uint8_t | syn6658_set_interface (syn6658_handle_t *handle, syn6658_interface_t interface) |
| set the chip interface | |
| uint8_t | syn6658_get_interface (syn6658_handle_t *handle, syn6658_interface_t *interface) |
| get the chip interface | |
| uint8_t | syn6658_init (syn6658_handle_t *handle) |
| initialize the chip | |
| uint8_t | syn6658_deinit (syn6658_handle_t *handle) |
| close the chip | |
| uint8_t | syn6658_get_status (syn6658_handle_t *handle, syn6658_status_t *status) |
| get the current status | |
| uint8_t | syn6658_stop (syn6658_handle_t *handle) |
| stop the chip | |
| uint8_t | syn6658_pause (syn6658_handle_t *handle) |
| pause the chip | |
| uint8_t | syn6658_resume (syn6658_handle_t *handle) |
| resume the chip | |
| uint8_t | syn6658_standby (syn6658_handle_t *handle) |
| set the chip to standby mode | |
| uint8_t | syn6658_wake_up (syn6658_handle_t *handle) |
| wake up the chip | |
| uint8_t | syn6658_set_text_type (syn6658_handle_t *handle, syn6658_type_t type) |
| set the chip text type | |
| uint8_t | syn6658_get_text_type (syn6658_handle_t *handle, syn6658_type_t *type) |
| get the chip text type | |
| uint8_t | syn6658_synthesis_text (syn6658_handle_t *handle, const char *const fmt,...) |
| synthesis the test | |
| uint8_t | syn6658_set_synthesis_volume (syn6658_handle_t *handle, uint8_t volume) |
| set the chip synthesis volume | |
| uint8_t | syn6658_set_synthesis_speed (syn6658_handle_t *handle, uint8_t speed) |
| set the synthesis speed | |
| uint8_t | syn6658_set_synthesis_speaker (syn6658_handle_t *handle, syn6658_speaker_t speaker) |
| set the synthesis speaker | |
| uint8_t | syn6658_save_text (syn6658_handle_t *handle, uint8_t offset, char *text) |
| save text to the buffer | |
| uint8_t | syn6658_play_text (syn6658_handle_t *handle, uint8_t times, syn6658_type_t type) |
| play text | |
| uint8_t | syn6658_set_command_with_arg (syn6658_handle_t *handle, uint8_t command, uint8_t param, char *txt, uint32_t timeout) |
| send the command with arg to the chip | |
| uint8_t | syn6658_set_command (syn6658_handle_t *handle, uint8_t command, uint32_t timeout) |
| send the command to the chip | |
| uint8_t | syn6658_info (syn6658_info_t *info) |
| get chip's information | |
driver syn6658 source file
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.
| Date | Version | Author | Description |
|---|---|---|---|
| 2024/08/30 | 1.0 | Shifeng Li | first upload |
Definition in file driver_syn6658.c.
| #define CHIP_NAME "Voicetx SYN6658" |
| #define DRIVER_VERSION 1000 |
driver version
Definition at line 50 of file driver_syn6658.c.
| #define MANUFACTURER_NAME "Voicetx" |
manufacturer name
Definition at line 44 of file driver_syn6658.c.
| #define MAX_CURRENT 53.0f |
chip max current
Definition at line 47 of file driver_syn6658.c.
| #define SUPPLY_VOLTAGE_MAX 4.5f |
chip max supply voltage
Definition at line 46 of file driver_syn6658.c.
| #define SUPPLY_VOLTAGE_MIN 3.1f |
chip min supply voltage
Definition at line 45 of file driver_syn6658.c.
| #define TEMPERATURE_MAX 85.0f |
chip max operating temperature
Definition at line 49 of file driver_syn6658.c.
| #define TEMPERATURE_MIN -40.0f |
chip min operating temperature
Definition at line 48 of file driver_syn6658.c.