LibDriver SYN6288E
Loading...
Searching...
No Matches
driver_syn6288e.c File Reference

driver syn6288e source file More...

#include "driver_syn6288e.h"
Include dependency graph for driver_syn6288e.c:

Go to the source code of this file.

Macros

#define CHIP_NAME   "YuToneWorld SYN6288E"
 chip information definition
#define MANUFACTURER_NAME   "YuToneWorld"
#define SUPPLY_VOLTAGE_MIN   2.4f
#define SUPPLY_VOLTAGE_MAX   5.1f
#define MAX_CURRENT   280.0f
#define TEMPERATURE_MIN   -35.0f
#define TEMPERATURE_MAX   85.0f
#define DRIVER_VERSION   1000

Functions

uint8_t syn6288e_init (syn6288e_handle_t *handle)
 initialize the chip
uint8_t syn6288e_deinit (syn6288e_handle_t *handle)
 close the chip
uint8_t syn6288e_get_status (syn6288e_handle_t *handle, syn6288e_status_t *status)
 get the current status
uint8_t syn6288e_stop (syn6288e_handle_t *handle)
 stop the chip
uint8_t syn6288e_pause (syn6288e_handle_t *handle)
 pause the chip
uint8_t syn6288e_resume (syn6288e_handle_t *handle)
 resume the chip
uint8_t syn6288e_power_down (syn6288e_handle_t *handle)
 power down the chip
uint8_t syn6288e_set_baud_rate (syn6288e_handle_t *handle, syn6288e_baud_rate_t rate)
 set the baud rate
uint8_t syn6288e_get_baud_rate (syn6288e_handle_t *handle, syn6288e_baud_rate_t *rate)
 get the baud rate
uint8_t syn6288e_set_mode (syn6288e_handle_t *handle, syn6288e_mode_t mode)
 set the chip mode
uint8_t syn6288e_get_mode (syn6288e_handle_t *handle, syn6288e_mode_t *mode)
 get the chip mode
uint8_t syn6288e_set_text_type (syn6288e_handle_t *handle, syn6288e_type_t type)
 set the chip text type
uint8_t syn6288e_get_text_type (syn6288e_handle_t *handle, syn6288e_type_t *type)
 get the chip text type
uint8_t syn6288e_synthesis_sound (syn6288e_handle_t *handle, syn6288e_sound_t sound)
 synthesis the sound
uint8_t syn6288e_synthesis_message (syn6288e_handle_t *handle, syn6288e_message_t message)
 synthesis the message
uint8_t syn6288e_synthesis_ring (syn6288e_handle_t *handle, syn6288e_ring_t ring)
 synthesis the ring
uint8_t syn6288e_synthesis_text (syn6288e_handle_t *handle, char *text)
 synthesis the test
uint8_t syn6288e_set_synthesis_volume (syn6288e_handle_t *handle, uint8_t volume)
 set the chip synthesis volume
uint8_t syn6288e_get_synthesis_volume (syn6288e_handle_t *handle, uint8_t *volume)
 get the chip synthesis volume
uint8_t syn6288e_set_background_volume (syn6288e_handle_t *handle, uint8_t volume)
 set the synthesis background volume
uint8_t syn6288e_get_background_volume (syn6288e_handle_t *handle, uint8_t *volume)
 get the chip synthesis background volume
uint8_t syn6288e_set_synthesis_speed (syn6288e_handle_t *handle, uint8_t speed)
 set the synthesis speed
uint8_t syn6288e_get_synthesis_speed (syn6288e_handle_t *handle, uint8_t *speed)
 get the synthesis speed
uint8_t syn6288e_set_command (syn6288e_handle_t *handle, char *command)
 send the command to the chip
uint8_t syn6288e_info (syn6288e_info_t *info)
 get chip's information

Detailed Description

driver syn6288e 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.

Version
1.0.0
Author
Shifeng Li
Date
2024-05-30

history

Date Version Author Description
2024/05/30 1.0 Shifeng Li first upload

Definition in file driver_syn6288e.c.

Macro Definition Documentation

◆ CHIP_NAME

#define CHIP_NAME   "YuToneWorld SYN6288E"

chip information definition

chip name

Definition at line 42 of file driver_syn6288e.c.

◆ DRIVER_VERSION

#define DRIVER_VERSION   1000

driver version

Definition at line 49 of file driver_syn6288e.c.

◆ MANUFACTURER_NAME

#define MANUFACTURER_NAME   "YuToneWorld"

manufacturer name

Definition at line 43 of file driver_syn6288e.c.

◆ MAX_CURRENT

#define MAX_CURRENT   280.0f

chip max current

Definition at line 46 of file driver_syn6288e.c.

◆ SUPPLY_VOLTAGE_MAX

#define SUPPLY_VOLTAGE_MAX   5.1f

chip max supply voltage

Definition at line 45 of file driver_syn6288e.c.

◆ SUPPLY_VOLTAGE_MIN

#define SUPPLY_VOLTAGE_MIN   2.4f

chip min supply voltage

Definition at line 44 of file driver_syn6288e.c.

◆ TEMPERATURE_MAX

#define TEMPERATURE_MAX   85.0f

chip max operating temperature

Definition at line 48 of file driver_syn6288e.c.

◆ TEMPERATURE_MIN

#define TEMPERATURE_MIN   -35.0f

chip min operating temperature

Definition at line 47 of file driver_syn6288e.c.