新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > 用單片機+DAC0832來解碼wav音樂C51程序

用單片機+DAC0832來解碼wav音樂C51程序

作者: 時間:2016-11-29 來源:網(wǎng)絡(luò) 收藏
本程序是從國外一個論壇下載的用51單片機+dac0832 播放wav音樂,音樂數(shù)據(jù)可以從串行輸入,如果聲音很小的話可以把數(shù)據(jù)接入功放的輸入端.完整的程序源代碼從這里下載http://www.51hei.com/f/waefd.rar下面是main文件:
/***************************************************************name         : main.cdesctiption  : mp3 main file for testing serial portauthor       : coolfireupdate       : 6/17/07/***************************************************************/#include #include "compiler.h"#include "initinit.h"#include "bufferuffer.h"#include "serialserial.h"extern Uint32 wav_len_w;extern Uint32 wav_len_r;mode_t mode=download;void main(){init();loop:   switch(mode){case idle:while(mode==idle);break;case download:while(mode==download){if(!wav_len_w)write_buffer(serial);read_buffer(flash);}break;case play:while(mode==play){if(!wav_len_r)write_buffer(flash);read_buffer(dac);}break;}goto loop;}


關(guān)鍵詞: 單片機DAC0832解

評論


技術(shù)專區(qū)

關(guān)閉