Bluenet  5.7.0
Bluenet, firmware for nRF52 smart home devices
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cs_COMP.h
Go to the documentation of this file.
1/*
2 * Author: Crownstone Team
3 * Copyright: Crownstone (https://crownstone.rocks)
4 * Date: Jan 31, 2017
5 * License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
6 */
7
8#pragma once
9
10// TODO: requires symbol names to be preceded by std::
11#include <cstdint>
12
13#include "ble/cs_Nordic.h"
14
19 // The sampled value went above the upper threshold.
21 // The sampled value went below the lower threshold.
23 // The sampled value went above the upper threshold, or below the lower threshold.
25 // Only used for configuration: When you want to get both UP, and DOWN events.
27};
28
33typedef void (*comp_event_cb_t)(CompEvent_t event);
34
40class COMP {
41public:
42 // Use static variant of singleton, no dynamic memory allocation
43 static COMP& getInstance() {
44 static COMP instance;
45 return instance;
46 }
47
59 void init(uint8_t ainPin, float thresholdDown, float thresholdUp, comp_event_cb_t callback);
60
66 void start(CompEvent_t event);
67
73 bool sample();
74
80 void handleEventDecoupled(nrf_comp_event_t event);
81
87 void handleEvent(nrf_comp_event_t event);
88
89private:
90 // This class is singleton, constructor is private
92
93 // This class is singleton, deny implementation
94 COMP(COMP const&);
95
96 // This class is singleton, deny implementation
97 void operator=(COMP const&);
98
104#ifdef NRF52_PAN_12
105 *(volatile uint32_t*)0x40013540 = (*(volatile uint32_t*)0x10000324 & 0x00001F00) >> 8;
106#endif
107 }
108
110};
Class that enables you to get events when a the voltage on an AIN pin goes over or below a given thre...
Definition: cs_COMP.h:40
COMP(COMP const &)
void start(CompEvent_t event)
Start the comparator.
void operator=(COMP const &)
void applyWorkarounds()
Apply work arounds that are suggested by Nordic.
Definition: cs_COMP.h:103
bool sample()
Sample the comparator.
void handleEventDecoupled(nrf_comp_event_t event)
Internal usage.
static COMP & getInstance()
Definition: cs_COMP.h:43
void handleEvent(nrf_comp_event_t event)
Internal usage.
void init(uint8_t ainPin, float thresholdDown, float thresholdUp, comp_event_cb_t callback)
The COMP unit gets initialized by indicating a pin.
comp_event_cb_t _callback
Definition: cs_COMP.h:109
void(* comp_event_cb_t)(CompEvent_t event)
Define comp_event_cb_t to be a void function with a CompEvent_t parameter as single argument.
Definition: cs_COMP.h:33
CompEvent_t
Compare events, also used for configuration.
Definition: cs_COMP.h:18
@ COMP_EVENT_BOTH
Definition: cs_COMP.h:26
@ COMP_EVENT_DOWN
Definition: cs_COMP.h:22
@ COMP_EVENT_UP
Definition: cs_COMP.h:20
@ COMP_EVENT_CROSS
Definition: cs_COMP.h:24