English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어
VS1053b は、Ogg Vorbis/MP3/AAC/WMA/FLAC/WAVMIDI オーディオ デコーダーと PCM/IMA ADPCM/Ogg Vorbis エンコーダーを単一チップ上に搭載しています。 高性能、独自の低消費電力 DSP プロセッサ コア VS_DSP4、データ メモリ、任意の内蔵デコーダ、シリアル制御および入力データ インターフェイスと同時に実行されるユーザー アプリケーション用の 16 KiB 命令 RAM および 0.5 KiB 以上のデータ RAM、最大 8 つの汎用データ RAM が含まれています。 目的の I/O ピン、UART、高品質可変サンプルレート ステレオ ADC (マイク、ライン、ライン + マイクまたは 2 ライン) とステレオ DAC、それに続くイヤホン アンプと共通電圧バッファーを備えています。VS1053b は、その機能を受け取ります。 シリアル入力バスを介して入力ビットストリームを受信し、システム スレーブとしてリッスンします。 入力ストリームはデコードされ、デジタル ボリューム コントロールを介して 18 ビット オーバーサンプリング、マルチビット、シグマデルタ DAC に渡されます。 デコードはシリアル制御バスを介して制御されます。 基本的なデコードに加えて、DSP エフェクトなどのアプリケーション固有の機能をユーザー RAM メモリに追加することができます。
LibDriver VS1053B は、LibDriver によって起動される VS1053B の全機能ドライバーです。 オーディオ再生、オーディオ録音などの機能を提供します。LibDriver は MISRA に準拠しています。
/ srcディレクトリには、LibDriver VS1053Bのソースファイルが含まれています。
/ interfaceディレクトリには、LibDriver VS1053B用のプラットフォームに依存しないSPIバステンプレートが含まれています。
/ testディレクトリには、チップの必要な機能を簡単にテストできるLibDriver VS1053Bドライバーテストプログラムが含まれています。
/ exampleディレクトリには、LibDriver VS1053Bプログラミング例が含まれています。
/ docディレクトリには、LibDriver VS1053Bオフラインドキュメントが含まれています。
/ datasheetディレクトリには、VS1053Bデータシートが含まれています。
/ projectディレクトリには、一般的に使用されるLinuxおよびマイクロコントローラー開発ボードのプロジェクトサンプルが含まれています。 すべてのプロジェクトは、デバッグ方法としてシェルスクリプトを使用しています。詳細については、各プロジェクトのREADME.mdを参照してください。
/ misraはLibDriver misraコードスキャン結果を含む。
/ interfaceディレクトリにあるプラットフォームに依存しないSPIバステンプレートを参照して、指定したプラットフォームのSPIバスドライバを完成させます。
/src ディレクトリ、プラットフォームのインターフェイス ドライバー、および独自のドライバーをプロジェクトに追加します。デフォルトのサンプル ドライバーを使用する場合は、/example ディレクトリをプロジェクトに追加します。
/example ディレクトリ内のサンプルを参照して、独自のドライバーを完成させることができます。 デフォルトのプログラミング例を使用したい場合の使用方法は次のとおりです。
#include "driver_vs1053b_basic.h"
uint8_t res;
volatile uint8_t gs_flag = 0;
volatile uint8_t gs_mode = 0;
static void a_callback(uint8_t type, uint32_t cur_pos)
{
switch (type)
{
case VS1053B_TYPE_PLAY_READ :
{
break;
}
case VS1053B_TYPE_PLAY_WRITE :
{
break;
}
case VS1053B_TYPE_PLAY_END :
{
gs_flag = 1;
vs1053b_interface_debug_print("vs1053b: play end.\n");
break;
}
case VS1053B_TYPE_RECORD_READ :
{
break;
}
case VS1053B_TYPE_RECORD_WRITE :
{
break;
}
case VS1053B_TYPE_RECORD_END :
{
vs1053b_interface_debug_print("vs1053b: irq record end with %d.\n", cur_pos);
break;
}
case VS1053B_TYPE_RECORD_OVER :
{
vs1053b_interface_debug_print("vs1053b: irq record over buffer with %d.\n", cur_pos);
break;
}
case VS1053B_TYPE_PERIOD :
{
if (gs_mode == 1)
{
uint8_t res;
uint16_t decode_time;
uint16_t rate;
vs1053b_channel_t channel;
vs1053b_audio_info_t info;
/* get decode time */
res = vs1053b_basic_get_decode_time(&decode_time);
if (res == 0)
{
vs1053b_interface_debug_print("\nvs1053b: play time is %02d:%02d:%02d.\n",
(decode_time % 86400) / 3600, (decode_time % 3600) / 60, decode_time % 60);
}
/* get byte rate */
res = vs1053b_basic_get_bytes_rate(&rate);
if (res == 0)
{
vs1053b_interface_debug_print("vs1053b: byte rate is %d bytes/sec.\n", rate);
}
/* get sample rate */
res = vs1053b_basic_get_sample_rate(&rate, &channel);
if (res == 0)
{
vs1053b_interface_debug_print("vs1053b: sample rate is %dHz, channel is %d.\n", rate, (uint8_t)(channel + 1));
}
/* get info */
res = vs1053b_basic_get_info(&info);
if (res == 0)
{
vs1053b_interface_debug_print("vs1053b: format is %s, rate is %0.0fkbps.\n", info.format_name, info.kbps);
}
}
if (gs_mode == 2)
{
(void)vs1053b_basic_stop();
gs_flag = 1;
vs1053b_interface_debug_print("vs1053b: up to record time.\n");
}
break;
}
default :
{
vs1053b_interface_debug_print("vs1053b: unknown type.\n");
break;
}
}
}
/* play init */
res = vs1053b_basic_init(VS1053B_MODE_PLAY, VS1053B_RECORD_FORMAT_WAV, a_callback);
if (res != 0)
{
return 1;
}
/* set timeout */
res = vs1053b_basic_set_callback_period(5);
if (res != 0)
{
(void)vs1053b_basic_deinit();
return 1;
}
/* play audio */
res = vs1053b_basic_play("0:test.mp3");
if (res != 0)
{
(void)vs1053b_basic_deinit();
return 1;
}
/* clear flag */
gs_flag = 0;
/* play */
gs_mode = 1;
/* run the server and wait for the end */
while (gs_flag == 0)
{
(void)vs1053b_basic_service();
}
/* deinit */
(void)vs1053b_basic_deinit();
return 0;
#include "driver_vs1053b_basic.h"
uint8_t res;
volatile uint8_t gs_flag = 0;
volatile uint8_t gs_mode = 0;
static void a_callback(uint8_t type, uint32_t cur_pos)
{
switch (type)
{
case VS1053B_TYPE_PLAY_READ :
{
break;
}
case VS1053B_TYPE_PLAY_WRITE :
{
break;
}
case VS1053B_TYPE_PLAY_END :
{
gs_flag = 1;
vs1053b_interface_debug_print("vs1053b: play end.\n");
break;
}
case VS1053B_TYPE_RECORD_READ :
{
break;
}
case VS1053B_TYPE_RECORD_WRITE :
{
break;
}
case VS1053B_TYPE_RECORD_END :
{
vs1053b_interface_debug_print("vs1053b: irq record end with %d.\n", cur_pos);
break;
}
case VS1053B_TYPE_RECORD_OVER :
{
vs1053b_interface_debug_print("vs1053b: irq record over buffer with %d.\n", cur_pos);
break;
}
case VS1053B_TYPE_PERIOD :
{
if (gs_mode == 1)
{
uint8_t res;
uint16_t decode_time;
uint16_t rate;
vs1053b_channel_t channel;
vs1053b_audio_info_t info;
/* get decode time */
res = vs1053b_basic_get_decode_time(&decode_time);
if (res == 0)
{
vs1053b_interface_debug_print("\nvs1053b: play time is %02d:%02d:%02d.\n",
(decode_time % 86400) / 3600, (decode_time % 3600) / 60, decode_time % 60);
}
/* get byte rate */
res = vs1053b_basic_get_bytes_rate(&rate);
if (res == 0)
{
vs1053b_interface_debug_print("vs1053b: byte rate is %d bytes/sec.\n", rate);
}
/* get sample rate */
res = vs1053b_basic_get_sample_rate(&rate, &channel);
if (res == 0)
{
vs1053b_interface_debug_print("vs1053b: sample rate is %dHz, channel is %d.\n", rate, (uint8_t)(channel + 1));
}
/* get info */
res = vs1053b_basic_get_info(&info);
if (res == 0)
{
vs1053b_interface_debug_print("vs1053b: format is %s, rate is %0.0fkbps.\n", info.format_name, info.kbps);
}
}
if (gs_mode == 2)
{
(void)vs1053b_basic_stop();
gs_flag = 1;
vs1053b_interface_debug_print("vs1053b: up to record time.\n");
}
break;
}
default :
{
vs1053b_interface_debug_print("vs1053b: unknown type.\n");
break;
}
}
}
/* record init */
res = vs1053b_basic_init(VS1053B_MODE_RECORD, VS1053B_RECORD_FORMAT_WAV, a_callback);
if (res != 0)
{
return 1;
}
/* set timeout */
res = vs1053b_basic_set_callback_period(60);
if (res != 0)
{
(void)vs1053b_basic_deinit();
return 1;
}
/* record audio */
res = vs1053b_basic_record("record.wav");
if (res != 0)
{
(void)vs1053b_basic_deinit();
return 1;
}
/* clear flag */
gs_flag = 0;
/* record */
gs_mode = 2;
/* run the server and wait for the end */
while (gs_flag == 0)
{
(void)vs1053b_basic_service();
}
/* deinit */
(void)vs1053b_basic_deinit();
return 0;
オンラインドキュメント: https://www.libdriver.com/docs/vs1053b/index.html。
オフラインドキュメント: /doc/html/index.html。
CONTRIBUTING.mdを参照してください。
著作権(c)2015-今 LibDriver 全著作権所有
MITライセンス(MIT)
このソフトウェアおよび関連するドキュメントファイル(「ソフトウェア」)のコピーを取得した人は、無制限の使用、複製、変更、組み込み、公開、配布、サブライセンスを含む、ソフトウェアを処分する権利を制限なく付与されます。ソフトウェアのライセンスおよび/またはコピーの販売、および上記のようにソフトウェアが配布された人の権利のサブライセンスは、次の条件に従うものとします。
上記の著作権表示およびこの許可通知は、このソフトウェアのすべてのコピーまたは実体に含まれるものとします。
このソフトウェアは「現状有姿」で提供され、商品性、特定目的への適合性、および非侵害の保証を含むがこれらに限定されない、明示または黙示を問わず、いかなる種類の保証もありません。 いかなる場合も、作者または著作権所有者は、契約、不法行為、またはその他の方法で、本ソフトウェアおよび本ソフトウェアの使用またはその他の廃棄に起因または関連して、請求、損害、またはその他の責任を負わないものとします。
お問い合わせください[email protected]。