Jared's DAC Code
Dependencies: mbed
Fork of Chemical_Sensor_DMA by
Sample/pdb.h
- Committer:
- DeWayneDennis
- Date:
- 2015-12-19
- Revision:
- 7:af255a90505e
- Parent:
- 2:3771b3195c7b
File content as of revision 7:af255a90505e:
/* This app note explains what needs to be set for a PDB, ADC, DMA setup: http://cache.freescale.com/files/32bit/doc/app_note/AN4688.pdf * http://cache.freescale.com/files/microcontrollers/doc/app_note/AN3844.pdf */ #ifndef PDB_H_ #define PDB_H_ #include "mbed.h" void pdb_init(); void pdb_start(); void pdb_stop(); /* * For Debugging Purposes * */ void pdb_enable_interrupt(); void pdb_disable_interrupt(); void PDB0_IRQHandler(); void pdb_print_registers(); #endif /* PDB_H_ */