Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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