forked from gioblu/PJON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAny.h
93 lines (52 loc) · 2.46 KB
/
Any.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/* Any strategy
This strategy includes virtual inheritance and let a PJON object switch
from a strategy to another when required or a collection of PJON objects
with different strategies to be treated dynamically.
Proposed and developed by Fred Larsen
___________________________________________________________________________
Copyright 2010-2022 Giovanni Blu Mitolo [email protected]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#pragma once
#include "StrategyLinkBase.h"
#include "StrategyLink.h"
class Any {
public:
StrategyLinkBase *s = NULL;
/* Set a pointer to the StrategyLink to be used.
It will not be freed by this class: */
void set_link(StrategyLinkBase *strategy_link) { s = strategy_link; }
/* Returns delay related to the attempts passed as parameter: */
uint32_t back_off(uint8_t attempts) { return s->back_off(attempts); }
/* Begin method, to be called on initialization: */
bool begin(uint8_t did = 0) {
return s->begin(did);
}
/* Check if the channel is free for transmission */
bool can_start() { return s->can_start(); };
/* Returns the maximum number of attempts for each transmission: */
uint8_t get_max_attempts() { return s->get_max_attempts(); }
/* Returns the recommended receive time for this strategy: */
uint16_t get_receive_time() { return s->get_receive_time(); }
/* Handle a collision: */
void handle_collision() { s->handle_collision(); };
/* Receive a frame: */
uint16_t receive_frame(uint8_t *data, uint16_t max_length) {
return s->receive_frame(data, max_length);
}
/* Receive byte response: */
uint16_t receive_response() { return s->receive_response(); }
/* Send byte response to package transmitter: */
void send_response(uint8_t response) { s->send_response(response); }
/* Send a frame: */
void send_frame(uint8_t *data, uint16_t length) {
s->send_frame(data, length);
}
};