You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
3.1KB

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