aboutsummaryrefslogtreecommitdiffstats
path: root/source/dac.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-08-15 08:44:02 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-08-15 08:44:02 -0400
commitd060dce4ec03dad8bcde265ff5b5eb68cd009ea2 (patch)
tree8370b81f6f9afc561840d83b3cd9b8e9accea275 /source/dac.cpp
parent7f59ca704b6f3c0ad254d391a123961aa0a86284 (diff)
move drivers into namespaces
Diffstat (limited to 'source/dac.cpp')
-rw-r--r--source/dac.cpp39
1 files changed, 21 insertions, 18 deletions
diff --git a/source/dac.cpp b/source/dac.cpp
index d2bcf37..6096d8e 100644
--- a/source/dac.cpp
+++ b/source/dac.cpp
@@ -34,24 +34,27 @@ constexpr static const GPTConfig gpt_config = {
.dier = 0
};
-void dac_init()
+namespace dac
{
- palSetPadMode(GPIOA, 4, PAL_MODE_INPUT_ANALOG);
- //palSetPadMode(GPIOA, 5, PAL_MODE_INPUT_ANALOG);
-
- dacStart(dacd, &dac_config);
- gptStart(gptd, &gpt_config);
-}
-
-void dac_write_start(dacsample_t *buffer, size_t count)
-{
- dacStartConversion(dacd, &dac_group_config, buffer, count);
- gptStartContinuous(gptd, 1);
-}
-
-void dac_write_stop()
-{
- gptStopTimer(gptd);
- dacStopConversion(dacd);
+ void init()
+ {
+ palSetPadMode(GPIOA, 4, PAL_MODE_INPUT_ANALOG);
+ //palSetPadMode(GPIOA, 5, PAL_MODE_INPUT_ANALOG);
+
+ dacStart(dacd, &dac_config);
+ gptStart(gptd, &gpt_config);
+ }
+
+ void write_start(dacsample_t *buffer, size_t count)
+ {
+ dacStartConversion(dacd, &dac_group_config, buffer, count);
+ gptStartContinuous(gptd, 1);
+ }
+
+ void write_stop()
+ {
+ gptStopTimer(gptd);
+ dacStopConversion(dacd);
+ }
}