Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

108 lines
2.8KB

  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include "play_sd_raw.h"
  27. void AudioPlaySdRaw::begin(void)
  28. {
  29. playing = false;
  30. file_offset = 0;
  31. file_size = 0;
  32. }
  33. bool AudioPlaySdRaw::play(const char *filename)
  34. {
  35. stop();
  36. __disable_irq();
  37. rawfile = SD.open(filename);
  38. __enable_irq();
  39. if (!rawfile) {
  40. //Serial.println("unable to open file");
  41. return false;
  42. }
  43. file_size = rawfile.size();
  44. file_offset = 0;
  45. //Serial.println("able to open file");
  46. playing = true;
  47. return true;
  48. }
  49. void AudioPlaySdRaw::stop(void)
  50. {
  51. __disable_irq();
  52. if (playing) {
  53. playing = false;
  54. __enable_irq();
  55. rawfile.close();
  56. } else {
  57. __enable_irq();
  58. }
  59. }
  60. void AudioPlaySdRaw::update(void)
  61. {
  62. unsigned int i, n;
  63. audio_block_t *block;
  64. // only update if we're playing
  65. if (!playing) return;
  66. // allocate the audio blocks to transmit
  67. block = allocate();
  68. if (block == NULL) return;
  69. if (rawfile.available()) {
  70. // we can read more data from the file...
  71. n = rawfile.read(block->data, AUDIO_BLOCK_SAMPLES*2);
  72. file_offset += n;
  73. for (i=n/2; i < AUDIO_BLOCK_SAMPLES; i++) {
  74. block->data[i] = 0;
  75. }
  76. transmit(block);
  77. } else {
  78. rawfile.close();
  79. playing = false;
  80. }
  81. release(block);
  82. }
  83. #define B2M (uint32_t)((double)4294967296000.0 / AUDIO_SAMPLE_RATE_EXACT / 2.0) // 97352592
  84. uint32_t AudioPlaySdRaw::positionMillis(void)
  85. {
  86. return ((uint64_t)file_offset * B2M) >> 32;
  87. }
  88. uint32_t AudioPlaySdRaw::lengthMillis(void)
  89. {
  90. return ((uint64_t)file_size * B2M) >> 32;
  91. }