anc_hal.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #ifndef _ANC_HAL_H_
  2. #define _ANC_HAL_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef enum{
  7. ANC_MODE_ANC,
  8. ANC_MODE_TRANS,
  9. }anc_mode_e;
  10. /**
  11. * @brief open and load image to anc dsp
  12. *
  13. * @return 0 if success open,otherwise return none zero
  14. */
  15. int anc_dsp_open(anc_mode_e mode);
  16. /**
  17. * @brief close anc dsp
  18. *
  19. * @return 0 if success open,otherwise return none zero
  20. */
  21. int anc_dsp_close(void);
  22. /**
  23. * @brief send command to anc dsp
  24. *
  25. * @param data Address of anct data
  26. * @param data Size of anct data
  27. *
  28. * @return 0 if send command success,none zero if failed
  29. * @note the @size must be 2 bytes aligned ,anct tool data length is 364 bytes
  30. */
  31. int anc_dsp_send_anct_data(void *data, int size);
  32. /**
  33. * @brief get one frame pcm data frome anc dsp
  34. *
  35. * @param start 1:start dump data; 0:stop dump data
  36. * @param ringbuf_addr address of ringbuf that dsp write data to
  37. * @return 0 if success,-1 if failed
  38. */
  39. int anc_dsp_dump_data(int start, uint32_t ringbuf_addr);
  40. /**
  41. * @brief notify anc dsp that samplerate has change
  42. *
  43. * @return 0 if success,-1 if failed
  44. */
  45. int anc_dsp_samplerate_notify(void);
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. #endif