Commit Graph

10 Commits

  • Use FreeRTOS v8+ compatible symbols (#93)
    Allows disabling backwards compatibility, which is not enabled by default since IDF 5.
    Since these symbols have been stable for many years now, it's time to let them go.
    - portTICK_RATE_MS renamed to portTICK_PERIOD_MS
    - xSemaphoreHandle renamed to SemaphoreHandle_t
    - xTaskHandle renamed to TaskHandle_t
  • Sync with sample stuffing (#69)
    * upgrade to IDF v5.1.1
    * add new synchronization implementation, use sample stuffing / removal to keep up sync
    * use big DMA buffer for I2S and improve sync
    * Add DAC TAS5805M as custom board
    * add wifi credential reset
      o press reset button (nRESET pin) 3 times
        but wait about 1s between button presses
        the button press counter is reset 5s after boot
    * Add support for PT8211 DAC (#78)
    * upgrade ethernet interface to IDF v5 (#84)
    * port official example of ethernet for IDF v5.x
    * Fix cmake if guard for ethernet
    
    Signed-off-by: Karl Osterseher <karli_o@gmx.at>
    Co-authored-by: DerPicknicker <64746593+DerPicknicker@users.noreply.github.com>
    Co-authored-by: whc2001 <ianwang0122@outlook.com>
  • Added support for MAX98357 (#46)
    * Added support for MAX98357
    
    * Delete unused macro
    
    * Update readme
    
    * Update kconfig default settings
  • Update Kconfig.projbuild
    set default values in dependency of codec
  • - fix missing mac address in hello message when ethernet is used
    - fix noise when adau1961 is used and muted
    - fix ESP32 not booting because active REFCLK from LAN8720
    
    some code polish
  • - add support for new DAC ADAU1961
    - increase main task stack size to prevent occasional stack overflows
    - remove bug in player component which sometimes lead to RESYNC 2 infinite loops
  • - completely drop ADF but copy necessary parts
    o copy component audio_board from ADF and create custom component from it
      o copy component audio_hal from ADF and create custom component from it
      o copy component audio_sal from ADF and create custom component from it
      o copy component esp_peripherals from ADF and create custom component from it
    - add fLaC support through xiph's original repository as a git module
  • - merge with original master from jorgen
    - minimize RAM usage of all components
    - use both IRAM and DRAM in player component so we can buffer up to 1s on modules without SPI RAM
    - support fragemented pcm chunks so we can use all available RAM if there isn't a big enough block available but still enough HEAP
    - reinclude all components from jorgen's master branch
    - add custom i2s driver to get a precise timing of initial sync
    - change wrong usage of esp_timer for latency measurement of snapcast protocol
    - add player component