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.

12 line
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