diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-04 20:09:48 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-04 20:09:48 -0400 |
commit | 7f59ca704b6f3c0ad254d391a123961aa0a86284 (patch) | |
tree | 8b34fd71adc9e5e6657214e1edcd8e6c4acdf6d4 /source/dac.hpp | |
parent | 17cda07f3ef79069e9bed2eca6c20f2b7fcb60b9 (diff) |
reorganized code; added dac support
Diffstat (limited to 'source/dac.hpp')
-rw-r--r-- | source/dac.hpp | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/source/dac.hpp b/source/dac.hpp index dc6cc3a..ce67f40 100644 --- a/source/dac.hpp +++ b/source/dac.hpp @@ -1,6 +1,6 @@ /** * @file dac.hpp - * @brief Wrapper for ChibiOS's DACDriver. + * @brief Manages signal creation using the DAC. * * Copyright (C) 2020 Clyne Sullivan * @@ -14,22 +14,9 @@ #include "hal.h" -class DACd -{ -public: - constexpr explicit DACd(DACDriver& driver, const DACConfig& config) : - m_driver(&driver), m_config(config) {} - - void init(); - - void write(unsigned int channel, uint16_t value); - -private: - DACDriver *m_driver; - DACConfig m_config; - - void initPins(); -}; +void dac_init(); +void dac_write_start(dacsample_t *buffer, size_t count); +void dac_write_stop(); #endif // STMDSP_DAC_HPP_ |