您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
305B

  1. #ifndef pdb_h_
  2. #define pdb_h_
  3. // Multiple input & output objects use the Programmable Delay Block
  4. // to set their sample rate. They must all configure the same
  5. // period to avoid chaos.
  6. #define PDB_CONFIG (PDB_SC_TRGSEL(15) | PDB_SC_PDBEN | PDB_SC_CONT)
  7. #define PDB_PERIOD 1087 // 48e6 / 44100
  8. #endif