bsp_board.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. #include "bsp_board.h"
  2. #include <stdbool.h>
  3. #include "esp_err.h"
  4. #include "freertos/FreeRTOS.h"
  5. #include "freertos/semphr.h"
  6. #include "freertos/task.h"
  7. #include "string.h"
  8. #include "driver/gpio.h"
  9. #include "esp_err.h"
  10. #include "esp_log.h"
  11. #include "esp_rom_sys.h"
  12. #include "esp_check.h"
  13. #include "esp_vfs_fat.h"
  14. #include "sdmmc_cmd.h"
  15. #include "driver/i2s_std.h"
  16. #include "driver/i2s_types.h"
  17. #include "driver/i2s_pdm.h"
  18. #include "driver/i2s_tdm.h"
  19. #include <sys/unistd.h>
  20. #include <sys/stat.h>
  21. #include "dirent.h"
  22. #include "driver/sdmmc_host.h"
  23. #include <errno.h>
  24. #if ((SOC_SDMMC_HOST_SUPPORTED) && (FUNC_SDMMC_EN))
  25. #include "driver/sdmmc_host.h"
  26. #endif /* ((SOC_SDMMC_HOST_SUPPORTED) && (FUNC_SDMMC_EN)) */
  27. #define ADC_I2S_CHANNEL 2
  28. #define ADC_BITS_PER_SAMPLE 32
  29. static sdmmc_card_t *card;
  30. static const char *TAG = "board";
  31. static int s_play_sample_rate = 16000;
  32. static int s_play_channel_format = 1;
  33. static int s_bits_per_chan = 16;
  34. #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)
  35. static i2s_chan_handle_t tx_handle = NULL; // I2S tx channel handler
  36. static i2s_chan_handle_t rx_handle = NULL; // I2S rx channel handler
  37. #endif
  38. static audio_codec_data_if_t *record_data_if = NULL;
  39. static audio_codec_ctrl_if_t *record_ctrl_if = NULL;
  40. static audio_codec_if_t *record_codec_if = NULL;
  41. static esp_codec_dev_handle_t record_dev = NULL;
  42. static audio_codec_data_if_t *play_data_if = NULL;
  43. static audio_codec_ctrl_if_t *play_ctrl_if = NULL;
  44. static audio_codec_gpio_if_t *play_gpio_if = NULL;
  45. static audio_codec_if_t *play_codec_if = NULL;
  46. static esp_codec_dev_handle_t play_dev = NULL;
  47. static i2c_master_bus_handle_t i2c_bus_handle = NULL;
  48. static uint32_t SDCard_Size = 0;
  49. static bool s_volume_buttons_task_started = false;
  50. int mic_level = 0;
  51. esp_codec_dev_handle_t esp_ret_play_dev(void)
  52. {
  53. return play_dev;
  54. }
  55. i2c_master_bus_handle_t esp_ret_i2c_handle(void)
  56. {
  57. return i2c_bus_handle;
  58. }
  59. static esp_err_t i2c_master_init(void)
  60. {
  61. const i2c_master_bus_config_t bus_config = {
  62. .i2c_port = I2C_NUM,
  63. .sda_io_num = GPIO_I2C_SDA,
  64. .scl_io_num = GPIO_I2C_SCL,
  65. .clk_source = I2C_CLK_SRC_DEFAULT,
  66. };
  67. esp_err_t ret = i2c_new_master_bus(&bus_config, &i2c_bus_handle);
  68. if (ret != ESP_OK) {
  69. ESP_LOGE(TAG, "Failed to initialize I2C bus: %s", esp_err_to_name(ret));
  70. return ret;
  71. }
  72. ESP_LOGI(TAG, "I2C bus initialized successfully");
  73. return ESP_OK; // 返回 ESP_OK 表示成功
  74. }
  75. esp_err_t bsp_codec_adc_init(int sample_rate)
  76. { ESP_LOGI(TAG,"ADC INIT START");
  77. esp_err_t ret_val = ESP_OK;
  78. audio_codec_i2s_cfg_t i2s_cfg = {
  79. .port = I2S_NUM_1,
  80. #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)
  81. .rx_handle = rx_handle,
  82. .tx_handle = NULL,
  83. #endif
  84. };
  85. record_data_if = audio_codec_new_i2s_data(&i2s_cfg);
  86. if(record_data_if == NULL)
  87. {
  88. ESP_LOGE(TAG,"record_data_if creation failed");
  89. return ESP_FAIL;
  90. }
  91. audio_codec_i2c_cfg_t i2c_cfg = {
  92. .addr = ES7210_CODEC_DEFAULT_ADDR,
  93. .bus_handle = i2c_bus_handle
  94. };
  95. record_ctrl_if = audio_codec_new_i2c_ctrl(&i2c_cfg);
  96. es7210_codec_cfg_t es7210_cfg = {
  97. .ctrl_if = record_ctrl_if,
  98. .mic_selected =
  99. ES7210_SEL_MIC1 |
  100. ES7210_SEL_MIC2 |
  101. ES7210_SEL_MIC3 |
  102. ES7210_SEL_MIC4,
  103. };
  104. record_codec_if = es7210_codec_new(&es7210_cfg);
  105. ESP_LOGI(TAG,"ES7210 IF=%p", record_codec_if);
  106. esp_codec_dev_cfg_t dev_cfg = {
  107. .codec_if = record_codec_if,
  108. .data_if = record_data_if,
  109. .dev_type = ESP_CODEC_DEV_TYPE_IN,
  110. };
  111. record_dev = esp_codec_dev_new(&dev_cfg);
  112. if(record_dev == NULL)
  113. {
  114. ESP_LOGE(TAG,"Failed creating ADC codec");
  115. return ESP_FAIL;
  116. }
  117. esp_codec_dev_sample_info_t fs = {
  118. .sample_rate = sample_rate,
  119. .channel = 2,
  120. .bits_per_sample = 16,
  121. };
  122. ret_val = esp_codec_dev_open(record_dev, &fs);
  123. if(ret_val != ESP_OK)
  124. {
  125. ESP_LOGE(TAG,
  126. "Codec open failed %s",
  127. esp_err_to_name(ret_val));
  128. return ret_val;
  129. }
  130. esp_codec_dev_set_in_channel_gain(
  131. record_dev,
  132. ESP_CODEC_DEV_MAKE_CHANNEL_MASK(0),
  133. RECORD_VOLUME);
  134. esp_codec_dev_set_in_channel_gain(
  135. record_dev,
  136. ESP_CODEC_DEV_MAKE_CHANNEL_MASK(1),
  137. RECORD_VOLUME);
  138. return ret_val;
  139. }
  140. esp_err_t bsp_codec_dac_init(int sample_rate, int channel_format, int bits_per_chan)
  141. {
  142. esp_err_t ret_val = ESP_OK;
  143. // Do initialize of related interface: data_if, ctrl_if and gpio_if
  144. audio_codec_i2s_cfg_t i2s_cfg = {
  145. .port = I2S_NUM_1,
  146. #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)
  147. .rx_handle = NULL,
  148. .tx_handle = tx_handle,
  149. #endif
  150. };
  151. play_data_if = audio_codec_new_i2s_data(&i2s_cfg);
  152. audio_codec_i2c_cfg_t i2c_cfg = {.addr = ES8311_CODEC_DEFAULT_ADDR,.bus_handle = i2c_bus_handle};
  153. play_ctrl_if = audio_codec_new_i2c_ctrl(&i2c_cfg);
  154. play_gpio_if = audio_codec_new_gpio();
  155. // New output codec interface
  156. es8311_codec_cfg_t es8311_cfg = {
  157. .codec_mode = ESP_CODEC_DEV_WORK_MODE_DAC,
  158. .ctrl_if = play_ctrl_if,
  159. .gpio_if = play_gpio_if,
  160. .pa_pin = GPIO_PWR_CTRL,
  161. .use_mclk = false,
  162. };
  163. play_codec_if = es8311_codec_new(&es8311_cfg);
  164. // New output codec device
  165. esp_codec_dev_cfg_t dev_cfg = {
  166. .codec_if = play_codec_if,
  167. .data_if = play_data_if,
  168. .dev_type = ESP_CODEC_DEV_TYPE_OUT,
  169. };
  170. play_dev = esp_codec_dev_new(&dev_cfg);
  171. esp_codec_dev_sample_info_t fs = {
  172. .bits_per_sample = bits_per_chan,
  173. .sample_rate = sample_rate,
  174. .channel = channel_format,
  175. };
  176. esp_codec_dev_set_out_vol(play_dev, PLAYER_VOLUME);
  177. esp_codec_dev_open(play_dev, &fs);
  178. return ret_val;
  179. }
  180. static esp_err_t bsp_codec_adc_deinit()
  181. {
  182. esp_err_t ret_val = ESP_OK;
  183. if (record_dev) {
  184. esp_codec_dev_close(record_dev);
  185. esp_codec_dev_delete(record_dev);
  186. record_dev = NULL;
  187. }
  188. // Delete codec interface
  189. if (record_codec_if) {
  190. audio_codec_delete_codec_if(record_codec_if);
  191. record_codec_if = NULL;
  192. }
  193. // Delete codec control interface
  194. if (record_ctrl_if) {
  195. audio_codec_delete_ctrl_if(record_ctrl_if);
  196. record_ctrl_if = NULL;
  197. }
  198. // Delete codec data interface
  199. if (record_data_if) {
  200. audio_codec_delete_data_if(record_data_if);
  201. record_data_if = NULL;
  202. }
  203. return ret_val;
  204. }
  205. static esp_err_t bsp_codec_dac_deinit()
  206. {
  207. esp_err_t ret_val = ESP_OK;
  208. if (play_dev) {
  209. esp_codec_dev_close(play_dev);
  210. esp_codec_dev_delete(play_dev);
  211. play_dev = NULL;
  212. }
  213. // Delete codec interface
  214. if (play_codec_if) {
  215. audio_codec_delete_codec_if(play_codec_if);
  216. play_codec_if = NULL;
  217. }
  218. // Delete codec control interface
  219. if (play_ctrl_if) {
  220. audio_codec_delete_ctrl_if(play_ctrl_if);
  221. play_ctrl_if = NULL;
  222. }
  223. if (play_gpio_if) {
  224. audio_codec_delete_gpio_if(play_gpio_if);
  225. play_gpio_if = NULL;
  226. }
  227. // Delete codec data interface
  228. if (play_data_if) {
  229. audio_codec_delete_data_if(play_data_if);
  230. play_data_if = NULL;
  231. }
  232. return ret_val;
  233. }
  234. esp_err_t esp_audio_set_play_vol(int volume)
  235. {
  236. if (!play_dev) {
  237. ESP_LOGE(TAG, "DAC codec init fail");
  238. return ESP_FAIL;
  239. }
  240. esp_codec_dev_set_out_vol(play_dev, volume);
  241. return ESP_OK;
  242. }
  243. esp_err_t esp_audio_get_play_vol(int *volume)
  244. {
  245. if (!play_dev) {
  246. ESP_LOGE(TAG, "DAC codec init fail");
  247. return ESP_FAIL;
  248. }
  249. esp_codec_dev_get_out_vol(play_dev, volume);
  250. return ESP_OK;
  251. }
  252. // static esp_err_t bsp_i2s_init(i2s_port_t i2s_num, uint32_t sample_rate, i2s_channel_fmt_t channel_format, i2s_bits_per_chan_t bits_per_chan)
  253. static esp_err_t bsp_i2s_init(int i2s_num, uint32_t sample_rate, int channel_format, int bits_per_chan)
  254. {
  255. esp_err_t ret_val = ESP_OK;
  256. #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)
  257. i2s_slot_mode_t channel_fmt = I2S_SLOT_MODE_STEREO;
  258. if (channel_format == 1) {
  259. channel_fmt = I2S_SLOT_MODE_MONO;
  260. } else if (channel_format == 2) {
  261. channel_fmt = I2S_SLOT_MODE_STEREO;
  262. } else {
  263. ESP_LOGE(TAG, "Unable to configure channel_format %d", channel_format);
  264. channel_format = 1;
  265. channel_fmt = I2S_SLOT_MODE_MONO;
  266. }
  267. if (bits_per_chan != 16 && bits_per_chan != 32) {
  268. ESP_LOGE(TAG, "Unable to configure bits_per_chan %d", bits_per_chan);
  269. bits_per_chan = 32;
  270. }
  271. i2s_chan_config_t chan_cfg = I2S_CHANNEL_DEFAULT_CONFIG(i2s_num, I2S_ROLE_MASTER);
  272. ret_val |= i2s_new_channel(&chan_cfg, &tx_handle, &rx_handle);
  273. i2s_std_config_t std_cfg = I2S_CONFIG_DEFAULT(sample_rate, channel_fmt, bits_per_chan);
  274. ret_val |= i2s_channel_init_std_mode(tx_handle, &std_cfg);
  275. ret_val |= i2s_channel_init_std_mode(rx_handle, &std_cfg);
  276. ret_val |= i2s_channel_enable(tx_handle);
  277. ret_val |= i2s_channel_enable(rx_handle);
  278. #else
  279. i2s_channel_fmt_t channel_fmt = I2S_CHANNEL_FMT_RIGHT_LEFT;
  280. if (channel_format == 1) {
  281. channel_fmt = I2S_CHANNEL_FMT_ONLY_LEFT;
  282. } else if (channel_format == 2) {
  283. channel_fmt = I2S_CHANNEL_FMT_RIGHT_LEFT;
  284. } else {
  285. ESP_LOGE(TAG, "Unable to configure channel_format %d", channel_format);
  286. channel_format = 1;
  287. channel_fmt = I2S_CHANNEL_FMT_ONLY_LEFT;
  288. }
  289. if (bits_per_chan != 16 && bits_per_chan != 32) {
  290. ESP_LOGE(TAG, "Unable to configure bits_per_chan %d", bits_per_chan);
  291. bits_per_chan = 16;
  292. }
  293. i2s_config_t i2s_config = I2S_CONFIG_DEFAULT(sample_rate, channel_fmt, bits_per_chan);
  294. i2s_pin_config_t pin_config = {
  295. .bck_io_num = GPIO_I2S_SCLK,
  296. .ws_io_num = GPIO_I2S_LRCK,
  297. .data_out_num = GPIO_I2S_DOUT,
  298. .data_in_num = GPIO_I2S_SDIN,
  299. .mck_io_num = GPIO_I2S_MCLK,
  300. };
  301. ret_val |= i2s_driver_install(i2s_num, &i2s_config, 0, NULL);
  302. ret_val |= i2s_set_pin(i2s_num, &pin_config);
  303. #endif
  304. return ret_val;
  305. }
  306. static esp_err_t bsp_i2s_deinit(int i2s_num)
  307. {
  308. esp_err_t ret_val = ESP_OK;
  309. #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)
  310. if (i2s_num == I2S_NUM_1 && rx_handle) {
  311. ret_val |= i2s_channel_disable(rx_handle);
  312. ret_val |= i2s_del_channel(rx_handle);
  313. rx_handle = NULL;
  314. } else if (i2s_num == I2S_NUM_0 && tx_handle) {
  315. ret_val |= i2s_channel_disable(tx_handle);
  316. ret_val |= i2s_del_channel(tx_handle);
  317. tx_handle = NULL;
  318. }
  319. #else
  320. ret_val |= i2s_stop(i2s_num);
  321. ret_val |= i2s_driver_uninstall(i2s_num);
  322. #endif
  323. return ret_val;
  324. }
  325. static esp_err_t bsp_codec_init(
  326. int adc_sample_rate,
  327. int dac_sample_rate,
  328. int dac_channel_format,
  329. int dac_bits_per_chan)
  330. {
  331. //ESP_LOGE(TAG, "bsp_codec_adc_init START");
  332. esp_err_t ret;
  333. ret = bsp_codec_adc_init(adc_sample_rate);
  334. if(ret != ESP_OK)
  335. {
  336. ESP_LOGE(TAG,"ADC init failed: %s",
  337. esp_err_to_name(ret));
  338. return ret;
  339. }
  340. ret = bsp_codec_dac_init(
  341. dac_sample_rate,
  342. dac_channel_format,
  343. dac_bits_per_chan);
  344. if(ret != ESP_OK)
  345. {
  346. ESP_LOGE(TAG,"DAC init failed: %s",
  347. esp_err_to_name(ret));
  348. }
  349. return ret;
  350. }
  351. static esp_err_t bsp_codec_deinit()
  352. {
  353. esp_err_t ret_val = ESP_OK;
  354. ret_val |= bsp_codec_adc_deinit();
  355. ret_val |= bsp_codec_dac_deinit();
  356. return ret_val;
  357. }
  358. esp_err_t esp_audio_play(const int16_t* data, int length, uint32_t ticks_to_wait)
  359. {
  360. size_t bytes_write = 0;
  361. esp_err_t ret = ESP_OK;
  362. if (!play_dev) {
  363. return ESP_FAIL;
  364. }
  365. int out_length= length;
  366. int audio_time = 1;
  367. audio_time *= (16000 / s_play_sample_rate);
  368. audio_time *= (2 / s_play_channel_format);
  369. int *data_out = NULL;
  370. if (s_bits_per_chan != 32) {
  371. out_length = length * 2;
  372. data_out = malloc(out_length);
  373. for (int i = 0; i < length / sizeof(int16_t); i++) {
  374. int ret = data[i];
  375. data_out[i] = ret << 16;
  376. }
  377. }
  378. int *data_out_1 = NULL;
  379. if (s_play_channel_format != 2 || s_play_sample_rate != 16000) {
  380. out_length *= audio_time;
  381. data_out_1 = malloc(out_length);
  382. int *tmp_data = NULL;
  383. if (data_out != NULL) {
  384. tmp_data = data_out;
  385. } else {
  386. tmp_data = (int *)data;
  387. }
  388. for (int i = 0; i < out_length / (audio_time * sizeof(int)); i++) {
  389. for (int j = 0; j < audio_time; j++) {
  390. data_out_1[audio_time * i + j] = tmp_data[i];
  391. }
  392. }
  393. if (data_out != NULL) {
  394. free(data_out);
  395. data_out = NULL;
  396. }
  397. }
  398. if (data_out != NULL) {
  399. ret = esp_codec_dev_write(play_dev, (void *)data_out, out_length);
  400. free(data_out);
  401. } else if (data_out_1 != NULL) {
  402. ret = esp_codec_dev_write(play_dev, (void *)data_out_1, out_length);
  403. free(data_out_1);
  404. } else {
  405. ret = esp_codec_dev_write(play_dev, (void *)data, length);
  406. }
  407. return ret;
  408. }
  409. int get_mic_level (void) {
  410. return mic_level;
  411. }
  412. esp_err_t esp_get_feed_data(
  413. bool is_get_raw_channel,
  414. int16_t *buffer,
  415. int buffer_len)
  416. {
  417. ESP_LOGE(TAG, "NEW esp_get_feed_data CALLED");
  418. if(record_dev == NULL)
  419. {
  420. ESP_LOGE(TAG,"record_dev NULL");
  421. return ESP_ERR_INVALID_STATE;
  422. }
  423. ESP_LOGI(TAG,
  424. "read buffer=%p size=%d",
  425. buffer,
  426. buffer_len);
  427. esp_err_t ret;
  428. ret = esp_codec_dev_read(
  429. record_dev,
  430. buffer,
  431. buffer_len);
  432. ESP_LOGI(TAG,
  433. "codec read ret=%s",
  434. esp_err_to_name(ret));
  435. if(ret != ESP_OK)
  436. {
  437. return ret;
  438. }
  439. // Check microphone data
  440. int64_t sum = 0;
  441. for(int i=0;i<buffer_len/sizeof(int16_t);i++)
  442. {
  443. sum += abs(buffer[i]);
  444. }
  445. ESP_LOGI(TAG,
  446. "MIC level=%lld",
  447. sum/(buffer_len/sizeof(int16_t)));
  448. return ESP_OK;
  449. }
  450. int esp_get_feed_channel(void)
  451. {
  452. return ADC_I2S_CHANNEL;
  453. }
  454. char* esp_get_input_format(void)
  455. {
  456. return "RM";
  457. }
  458. static void bsp_volume_buttons_task(void *arg)
  459. {
  460. int last_key1 = 1;
  461. int last_key3 = 1;
  462. while (1) {
  463. int key1 = gpio_get_level(GPIO_KEY1_PIN);
  464. int key3 = gpio_get_level(GPIO_KEY3_PIN);
  465. if (key1 == 0 && last_key1 != 0) {
  466. int current_vol = 0;
  467. if (esp_audio_get_play_vol(&current_vol) == ESP_OK) {
  468. current_vol += VOLUME_STEP;
  469. if (current_vol > VOLUME_MAX_LEVEL) {
  470. current_vol = VOLUME_MAX_LEVEL;
  471. }
  472. if (esp_audio_set_play_vol(current_vol) == ESP_OK) {
  473. ESP_LOGI(TAG, "Volume up -> %d", current_vol);
  474. }
  475. }
  476. }
  477. if (key3 == 0 && last_key3 != 0) {
  478. int current_vol = 0;
  479. if (esp_audio_get_play_vol(&current_vol) == ESP_OK) {
  480. current_vol -= VOLUME_STEP;
  481. if (current_vol < VOLUME_MIN_LEVEL) {
  482. current_vol = VOLUME_MIN_LEVEL;
  483. }
  484. if (esp_audio_set_play_vol(current_vol) == ESP_OK) {
  485. ESP_LOGI(TAG, "Volume down -> %d", current_vol);
  486. }
  487. }
  488. }
  489. last_key1 = key1;
  490. last_key3 = key3;
  491. vTaskDelay(pdMS_TO_TICKS(VOLUME_BUTTON_POLL_MS));
  492. }
  493. }
  494. static esp_err_t bsp_volume_buttons_init(void)
  495. {
  496. if (s_volume_buttons_task_started) {
  497. return ESP_OK;
  498. }
  499. gpio_config_t io_conf = {
  500. .pin_bit_mask = (1ULL << GPIO_KEY1_PIN) | (1ULL << GPIO_KEY3_PIN),
  501. .mode = GPIO_MODE_INPUT,
  502. .pull_up_en = GPIO_PULLUP_ENABLE,
  503. .pull_down_en = GPIO_PULLDOWN_DISABLE,
  504. .intr_type = GPIO_INTR_DISABLE,
  505. };
  506. esp_err_t ret = gpio_config(&io_conf);
  507. if (ret != ESP_OK) {
  508. return ret;
  509. }
  510. BaseType_t task_created = xTaskCreate(bsp_volume_buttons_task, "vol_btns", 4096, NULL, 5, NULL);
  511. if (task_created != pdPASS) {
  512. return ESP_FAIL;
  513. }
  514. s_volume_buttons_task_started = true;
  515. return ESP_OK;
  516. }
  517. esp_err_t esp_board_init(uint32_t sample_rate, int channel_format, int bits_per_chan)
  518. {
  519. /*!< Initialize I2C bus, used for audio codec*/
  520. i2c_master_init();
  521. s_play_sample_rate = sample_rate;
  522. if (channel_format != 2 && channel_format != 1) {
  523. ESP_LOGE(TAG, "Unable to configure channel_format");
  524. channel_format = 2;
  525. }
  526. s_play_channel_format = channel_format;
  527. if (bits_per_chan != 32 && bits_per_chan != 16) {
  528. ESP_LOGE(TAG, "Unable to configure bits_per_chan");
  529. bits_per_chan = 32;
  530. }
  531. s_bits_per_chan = bits_per_chan;
  532. bsp_i2s_init(I2S_NUM_1, 16000, 2, 16);
  533. // Because record and play use the same i2s.
  534. esp_err_t codec_ret;
  535. codec_ret = bsp_codec_init(16000,16000,2,16);
  536. if(codec_ret != ESP_OK)
  537. {
  538. ESP_LOGE(TAG,
  539. "bsp_codec_init failed: %s",
  540. esp_err_to_name(codec_ret));
  541. }
  542. else
  543. {
  544. ESP_LOGI(TAG,"bsp_codec_init OK");
  545. }
  546. /* Initialize PA */
  547. /*gpio_config_t io_conf;
  548. memset(&io_conf, 0, sizeof(io_conf));
  549. io_conf.intr_type = GPIO_INTR_DISABLE;
  550. io_conf.mode = GPIO_MODE_OUTPUT;
  551. io_conf.pin_bit_mask = ((1ULL << GPIO_PWR_CTRL));
  552. io_conf.pull_down_en = 0;
  553. io_conf.pull_up_en = 0;
  554. gpio_config(&io_conf);
  555. */
  556. gpio_set_level(GPIO_PWR_CTRL, 1);
  557. esp_err_t button_ret = bsp_volume_buttons_init();
  558. if (button_ret != ESP_OK) {
  559. ESP_LOGW(TAG, "Failed to initialize volume buttons: %s", esp_err_to_name(button_ret));
  560. }
  561. return ESP_OK;
  562. }
  563. esp_err_t esp_sdcard_init(char *mount_point, size_t max_files)
  564. {
  565. if (NULL != card) {
  566. return ESP_ERR_INVALID_STATE;
  567. }
  568. /* Check if SD crad is supported */
  569. if (!FUNC_SDMMC_EN && !FUNC_SDSPI_EN) {
  570. ESP_LOGE(TAG, "SDMMC and SDSPI not supported on this board!");
  571. return ESP_ERR_NOT_SUPPORTED;
  572. }
  573. esp_err_t ret_val = ESP_OK;
  574. /**
  575. * @brief Options for mounting the filesystem.
  576. * If format_if_mount_failed is set to true, SD card will be partitioned and
  577. * formatted in case when mounting fails.
  578. *
  579. */
  580. esp_vfs_fat_sdmmc_mount_config_t mount_config = {
  581. .format_if_mount_failed = false,
  582. .max_files = max_files,
  583. .allocation_unit_size = 16 * 1024
  584. };
  585. /**
  586. * @brief Use settings defined above to initialize SD card and mount FAT filesystem.
  587. * Note: esp_vfs_fat_sdmmc/sdspi_mount is all-in-one convenience functions.
  588. * Please check its source code and implement error recovery when developing
  589. * production applications.
  590. *
  591. */
  592. sdmmc_host_t host =
  593. #if FUNC_SDMMC_EN
  594. SDMMC_HOST_DEFAULT();
  595. #else
  596. SDSPI_HOST_DEFAULT();
  597. spi_bus_config_t bus_cfg = {
  598. .mosi_io_num = GPIO_SDSPI_MOSI,
  599. .miso_io_num = GPIO_SDSPI_MISO,
  600. .sclk_io_num = GPIO_SDSPI_SCLK,
  601. .quadwp_io_num = GPIO_NUM_NC,
  602. .quadhd_io_num = GPIO_NUM_NC,
  603. .max_transfer_sz = 4000,
  604. };
  605. ret_val = spi_bus_initialize(host.slot, &bus_cfg, SPI_DMA_CH_AUTO);
  606. if (ret_val != ESP_OK) {
  607. ESP_LOGE(TAG, "Failed to initialize bus.");
  608. return ret_val;
  609. }
  610. #endif
  611. /**
  612. * @brief This initializes the slot without card detect (CD) and write protect (WP) signals.
  613. * Modify slot_config.gpio_cd and slot_config.gpio_wp if your board has these signals.
  614. *
  615. */
  616. #if FUNC_SDMMC_EN
  617. sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
  618. #else
  619. sdspi_device_config_t slot_config = SDSPI_DEVICE_CONFIG_DEFAULT();
  620. #endif
  621. #if FUNC_SDMMC_EN
  622. /* Config SD data width. 0, 4 or 8. Currently for SD card, 8 bit is not supported. */
  623. slot_config.width = SDMMC_BUS_WIDTH;
  624. /**
  625. * @brief On chips where the GPIOs used for SD card can be configured, set them in
  626. * the slot_config structure.
  627. *
  628. */
  629. #if SOC_SDMMC_USE_GPIO_MATRIX
  630. slot_config.clk = GPIO_SDMMC_CLK;
  631. slot_config.cmd = GPIO_SDMMC_CMD;
  632. slot_config.d0 = GPIO_SDMMC_D0;
  633. slot_config.d1 = GPIO_SDMMC_D1;
  634. slot_config.d2 = GPIO_SDMMC_D2;
  635. slot_config.d3 = GPIO_SDMMC_D3;
  636. #endif
  637. slot_config.cd = GPIO_SDMMC_DET;
  638. slot_config.flags |= SDMMC_SLOT_FLAG_INTERNAL_PULLUP;
  639. #else
  640. slot_config.gpio_cs = GPIO_SDSPI_CS;
  641. slot_config.host_id = host.slot;
  642. #endif
  643. /**
  644. * @brief Enable internal pullups on enabled pins. The internal pullups
  645. * are insufficient however, please make sure 10k external pullups are
  646. * connected on the bus. This is for debug / example purpose only.
  647. */
  648. /* get FAT filesystem on SD card registered in VFS. */
  649. ret_val =
  650. #if FUNC_SDMMC_EN
  651. esp_vfs_fat_sdmmc_mount(mount_point, &host, &slot_config, &mount_config, &card);
  652. #else
  653. esp_vfs_fat_sdspi_mount(mount_point, &host, &slot_config, &mount_config, &card);
  654. #endif
  655. /* Check for SDMMC mount result. */
  656. if (ret_val != ESP_OK) {
  657. if (ret_val == ESP_FAIL) {
  658. ESP_LOGE(TAG, "Failed to mount filesystem. "
  659. "If you want the card to be formatted, set the EXAMPLE_FORMAT_IF_MOUNT_FAILED menuconfig option.");
  660. } else {
  661. ESP_LOGE(TAG, "Failed to initialize the card (%s). "
  662. "Make sure SD card lines have pull-up resistors in place.", esp_err_to_name(ret_val));
  663. }
  664. return ret_val;
  665. }
  666. /* Card has been initialized, print its properties. */
  667. sdmmc_card_print_info(stdout, card);
  668. SDCard_Size = ((uint64_t) card->csd.capacity) * card->csd.sector_size / (1024 * 1024);
  669. return ret_val;
  670. }
  671. esp_err_t esp_sdcard_deinit(char *mount_point)
  672. {
  673. if (NULL == mount_point) {
  674. return ESP_ERR_INVALID_STATE;
  675. }
  676. /* Unmount an SD card from the FAT filesystem and release resources acquired */
  677. esp_err_t ret_val = esp_vfs_fat_sdcard_unmount(mount_point, card);
  678. /* Make SD/MMC card information structure pointer NULL */
  679. card = NULL;
  680. return ret_val;
  681. }
  682. #define MOUNT_POINT "/sdcard"
  683. static const char *SD_TAG = "SD";
  684. uint16_t Folder_retrieval(const char* directory, const char* fileExtension, char File_Name[][MAX_FILE_NAME_SIZE], uint16_t maxFiles)
  685. {
  686. DIR *dir = opendir(directory);
  687. if (dir == NULL) {
  688. ESP_LOGE(SD_TAG, "Path: <%s> does not exist", directory);
  689. return 0;
  690. }
  691. uint16_t fileCount = 0;
  692. struct dirent *entry;
  693. while ((entry = readdir(dir)) != NULL && fileCount < maxFiles) {
  694. if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
  695. continue;
  696. }
  697. const char *dot = strrchr(entry->d_name, '.');
  698. if (dot != NULL && dot != entry->d_name) {
  699. if (strcasecmp(dot, fileExtension) == 0) {
  700. strncpy(File_Name[fileCount], entry->d_name, MAX_FILE_NAME_SIZE - 1);
  701. File_Name[fileCount][MAX_FILE_NAME_SIZE - 1] = '\0';
  702. char filePath[MAX_PATH_SIZE];
  703. snprintf(filePath, MAX_PATH_SIZE, "%s/%s", directory, entry->d_name);
  704. printf("File found: %s\r\n", filePath);
  705. fileCount++;
  706. }
  707. }
  708. else{
  709. // printf("No extension found for file: %s\r\n", entry->d_name);
  710. }
  711. }
  712. closedir(dir);
  713. if (fileCount > 0) {
  714. ESP_LOGI(SD_TAG, "Retrieved %d files with extension '%s'", fileCount, fileExtension);
  715. } else {
  716. ESP_LOGW(SD_TAG, "No files with extension '%s' found in directory: %s", fileExtension, directory);
  717. }
  718. return fileCount;
  719. }