diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-15 08:44:02 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-15 08:44:02 -0400 |
commit | d060dce4ec03dad8bcde265ff5b5eb68cd009ea2 (patch) | |
tree | 8370b81f6f9afc561840d83b3cd9b8e9accea275 /source/dac.hpp | |
parent | 7f59ca704b6f3c0ad254d391a123961aa0a86284 (diff) |
move drivers into namespaces
Diffstat (limited to 'source/dac.hpp')
-rw-r--r-- | source/dac.hpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source/dac.hpp b/source/dac.hpp index ce67f40..9d529bf 100644 --- a/source/dac.hpp +++ b/source/dac.hpp @@ -14,9 +14,12 @@ #include "hal.h" -void dac_init(); -void dac_write_start(dacsample_t *buffer, size_t count); -void dac_write_stop(); +namespace dac +{ + void init(); + void write_start(dacsample_t *buffer, size_t count); + void write_stop(); +} #endif // STMDSP_DAC_HPP_ |