blob: 7069b32803df94523d6b6baa71271f98e67a494b (
plain)
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
|
#pragma once
#include "pb-types.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* \ingroup pbdrv-mod
* \defgroup pb_mod Module
* \brief Puzzle module metadata and auxiliary utility functions
* \{
*/
/**
* \brief Puzzle module name
* \note This constant is optional to define, its default value is "???"
*/
extern const char * PB_MOD_NAME;
/**
* \brief Puzzle module bus address
* \warning This variable **must** be defined by the user
*/
extern const i2c_addr_t PB_MOD_ADDR;
/// \}
/**
* \ingroup pbdrv-mod
* \defgroup pb_i2c I2C
* \brief I2C send/receive handlers
*
* \{
*/
/**
* \brief Handle a received message from the I2C bus (puzzle bus)
*
* This function attempts to parse an I2C message as a puzzle bus message, and
* calls the appropriate handler for the message if it is considered valid.
* Invalid messages are silently ignored.
*
* \param buf pointer to message content
* \param sz size of \p buf
*
* \note This function should not be directly called from an ISR. Please use
* FreeRTOS's \c xTimerPendFunctionCallFromISR() or a similar scheduler-based
* deferred function call mechanism instead.
*/
void pb_i2c_recv(const uint8_t * buf, size_t sz);
/**
* \brief Send a message in master-mode on the I2C bus (puzzle bus)
*
* This function sends an I2C message to the address specified by \p i2c_addr.
*
* \param i2c_addr address of slave controller
* \param buf pointer to message content
* \param sz size of \p buf
*/
void pb_i2c_send(i2c_addr_t i2c_addr, const uint8_t * buf, size_t sz);
/// \}
/**
* \ingroup pb_hook
* \defgroup pb_hook_mod_state State
* \brief Provide your own global state variable
*
* If your puzzle module defines its own global \c pb_global_state_t, you can
* tell the driver to use it by implementing these functions. These functions
* are also used internally by the driver.
*
* \{
*/
/**
* \brief global state read hook
* \return current value of global state enum
*
* The default implementation of this function uses an internal global state
* variable in \ref pbdrv.
*/
pb_global_state_t pb_hook_mod_state_read();
/**
* \brief global state write hook
* \param state new value of global state enum
*
* The default implementation of this function uses an internal global state
* variable in \ref pbdrv.
*/
void pb_hook_mod_state_write(pb_global_state_t state);
/// \}
/**
* \ingroup pb_hook
* \defgroup pb_hook_i2c I2C
* \brief Intercept incoming/outgoing I2C messages
*
* \{
*/
bool pb_hook_i2c_recv(const uint8_t * buf, size_t sz);
bool pb_hook_i2c_send(i2c_addr_t i2c_addr, const uint8_t * buf, size_t sz);
/// \}
#ifdef __cplusplus
}
#endif
|