We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 105c172 commit 024cf36Copy full SHA for 024cf36
libraries/RPC/src/RPC.h
@@ -42,19 +42,26 @@ class RPCClass : public Stream, public rpc::detail::dispatcher {
42
for (int i = 0; i< 10; i++) {
43
clients[i] = NULL;
44
}
45
- };
+ }
46
int begin();
47
- void end() {};
+ void end() {
48
+
49
50
int available(void) {
51
return rx_buffer.available();
52
53
int peek(void) {
54
return rx_buffer.peek();
55
56
int read(void) {
57
return rx_buffer.read_char();
58
- void flush(void) {};
59
+ void flush(void) {
60
61
62
+ uint32_t cpu_id() {
63
+ return HAL_GetCurrentCPUID();
64
65
size_t write(uint8_t c);
66
size_t write(const uint8_t *buf, size_t len, bool raw = true);
67
0 commit comments