-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathplatform.h
113 lines (100 loc) · 3.97 KB
/
platform.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* Wirepas Oy licensed under Apache License, Version 2.0
*
* See file LICENSE for full license details.
*
*/
#ifndef PLATFORM_H_
#define PLATFORM_H_
#include <stdbool.h>
#include "wpc_types.h"
/**
* \brief Callback to be called when an indication is received
* \param frame
* The received indication
* \param timestamp_ms
* Timestamp of teh received indication
*/
typedef void (*onIndicationReceivedLocked_cb_f)(wpc_frame_t * frame,
unsigned long long timestamp_ms);
/**
* \brief Function to retrieved indication
* \param max_ind
* Maximum number of indication to retrieve in a single poll request
* \param cb_locked
* Callback to call when an indication is received
* \return Negative value if an error happen
* 0 if successfull and no more indication pending
* 1 if at least one indication is still pending
* \note It is up to the platform implementation to call this method at
* the right place from the decided context (polling Thread for example)
*/
typedef int (*Platform_get_indication_f)(unsigned int max_ind, onIndicationReceivedLocked_cb_f cb_locked);
/**
* \brief Dispatch a received indication
* \param frame
* The indication to dispatch
* \param timestamp_ms
* The timestamp of this indication reception
* \note It is up to the platform implementation to call this method at
* the right place
*/
typedef void (*Platform_dispatch_indication_f)(wpc_frame_t * frame, unsigned long long timestamp_ms);
/**
* \brief Initialization of the platform part
* It is up to the platform to initialize all what is required to operate
* correctly
* \param get_indication_f
* function pointer to be called by the platform code periodically or on
* event depending on operation mode
* \param dispatch_indication_f
* function pointer to handle a received indication. It is a distinct call
* from previous function to allow a more flexible design
* \return true if platform is correctly initialized, false otherwise
*/
bool Platform_init(Platform_get_indication_f get_indication_f,
Platform_dispatch_indication_f dispatch_indication_f);
/**
* \brief Get a timestamp in ms since epoch
* \Note If this information is not available on the platform,
* a different timesatmp can be used and up to upper layer
* to convert it later.
* \return Timestamp when the call to this function is made
*/
unsigned long long Platform_get_timestamp_ms_epoch();
/**
* \brief Get a monotonic timestamp in ms.
* \return Monotonic timestamp when the call to this function is made
*/
unsigned long long Platform_get_timestamp_ms_monotonic();
/**
* \brief Call at the beginning of a locked section to send a request
* \Note It is up to the platform implementation to see if
* this lock must be implemented or not. If all the requests
* to the stack are done in the same context, it is useless.
* But if poll requests (and indication handling) are not done
* from same thread as other API requests, it has to be implemented
* accordingly to the architecture chosen.
*/
bool Platform_lock_request();
/**
*
* \brief Called at the end of a locked section to send a request
*/
void Platform_unlock_request();
/**
* \brief Dynamic memory allocation
* \param size
* Size of memory to allocate
* \return Pointer to the allocated memory, NULL otherwise
* \note Dynamic allocation is only used in case of reassembly of packets on second mcu
*/
void * Platform_malloc(size_t size);
/**
* \brief Free memory allocated with \ref Platform_malloc
* \param ptr
* Pointer to the memory to release
* \note Dynamic allocation is only used in case of reassembly of packets on second mcu
*/
void Platform_free(void *ptr, size_t size);
void Platform_close();
#endif /* PLATFORM_H_ */