![]() |
LibDriver SYN6288
2.0.0
SYN6288 full-featured driver
|
driver syn6288 header file More...
#include <stdio.h>
#include <stdint.h>
#include <string.h>
Go to the source code of this file.
Data Structures | |
struct | syn6288_handle_s |
syn6288 handle structure definition More... | |
struct | syn6288_info_s |
syn6288 information structure definition More... | |
Macros | |
#define | DRIVER_SYN6288_LINK_INIT(HANDLE, STRUCTURE) memset(HANDLE, 0, sizeof(STRUCTURE)) |
initialize syn6288_handle_t structure More... | |
#define | DRIVER_SYN6288_LINK_UART_INIT(HANDLE, FUC) (HANDLE)->uart_init = FUC |
link uart_init function More... | |
#define | DRIVER_SYN6288_LINK_UART_DEINIT(HANDLE, FUC) (HANDLE)->uart_deinit = FUC |
link uart_deinit function More... | |
#define | DRIVER_SYN6288_LINK_UART_READ(HANDLE, FUC) (HANDLE)->uart_read = FUC |
link uart_read function More... | |
#define | DRIVER_SYN6288_LINK_UART_WRITE(HANDLE, FUC) (HANDLE)->uart_write = FUC |
link uart_write function More... | |
#define | DRIVER_SYN6288_LINK_UART_FLUSH(HANDLE, FUC) (HANDLE)->uart_flush = FUC |
link uart_flush function More... | |
#define | DRIVER_SYN6288_LINK_DELAY_MS(HANDLE, FUC) (HANDLE)->delay_ms = FUC |
link delay_ms function More... | |
#define | DRIVER_SYN6288_LINK_DEBUG_PRINT(HANDLE, FUC) (HANDLE)->debug_print = FUC |
link debug_print function More... | |
Typedefs | |
typedef struct syn6288_handle_s | syn6288_handle_t |
syn6288 handle structure definition More... | |
typedef struct syn6288_info_s | syn6288_info_t |
syn6288 information structure definition More... | |
Functions | |
uint8_t | syn6288_info (syn6288_info_t *info) |
get chip's information More... | |
uint8_t | syn6288_init (syn6288_handle_t *handle) |
initialize the chip More... | |
uint8_t | syn6288_deinit (syn6288_handle_t *handle) |
close the chip More... | |
uint8_t | syn6288_synthesis_text (syn6288_handle_t *handle, char *text) |
synthesis the test More... | |
uint8_t | syn6288_synthesis_sound (syn6288_handle_t *handle, syn6288_sound_t sound) |
synthesis the sound More... | |
uint8_t | syn6288_synthesis_message (syn6288_handle_t *handle, syn6288_message_t message) |
synthesis the message More... | |
uint8_t | syn6288_synthesis_ring (syn6288_handle_t *handle, syn6288_ring_t ring) |
synthesis the ring More... | |
uint8_t | syn6288_get_status (syn6288_handle_t *handle, syn6288_status_t *status) |
get the current status More... | |
uint8_t | syn6288_stop (syn6288_handle_t *handle) |
stop the chip More... | |
uint8_t | syn6288_pause (syn6288_handle_t *handle) |
pause the chip More... | |
uint8_t | syn6288_resume (syn6288_handle_t *handle) |
resume the chip More... | |
uint8_t | syn6288_power_down (syn6288_handle_t *handle) |
power down the chip More... | |
uint8_t | syn6288_set_text_type (syn6288_handle_t *handle, syn6288_type_t type) |
set the chip text type More... | |
uint8_t | syn6288_get_text_type (syn6288_handle_t *handle, syn6288_type_t *type) |
get the chip text type More... | |
uint8_t | syn6288_set_baud_rate (syn6288_handle_t *handle, syn6288_baud_rate_t rate) |
set the baud rate More... | |
uint8_t | syn6288_get_baud_rate (syn6288_handle_t *handle, syn6288_baud_rate_t *rate) |
get the baud rate More... | |
uint8_t | syn6288_set_mode (syn6288_handle_t *handle, syn6288_mode_t mode) |
set the chip mode More... | |
uint8_t | syn6288_get_mode (syn6288_handle_t *handle, syn6288_mode_t *mode) |
get the chip mode More... | |
uint8_t | syn6288_set_synthesis_volume (syn6288_handle_t *handle, uint8_t volume) |
set the chip synthesis volume More... | |
uint8_t | syn6288_get_synthesis_volume (syn6288_handle_t *handle, uint8_t *volume) |
get the chip synthesis volume More... | |
uint8_t | syn6288_set_background_volume (syn6288_handle_t *handle, uint8_t volume) |
set the synthesis background volume More... | |
uint8_t | syn6288_get_background_volume (syn6288_handle_t *handle, uint8_t *volume) |
get the chip synthesis background volume More... | |
uint8_t | syn6288_set_synthesis_speed (syn6288_handle_t *handle, uint8_t speed) |
set the synthesis speed More... | |
uint8_t | syn6288_get_synthesis_speed (syn6288_handle_t *handle, uint8_t *speed) |
get the synthesis speed More... | |
uint8_t | syn6288_set_command (syn6288_handle_t *handle, char *command) |
send the command to the chip More... | |
driver syn6288 header 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 |
---|---|---|---|
2021/03/17 | 2.0 | Shifeng Li | format the code |
2020/12/01 | 1.0 | Shifeng Li | first upload |
Definition in file driver_syn6288.h.