Mon, 23 Nov 2020 21:57:06 +0100
Do not go to the next line if the char to display does not fit
5 | 1 | #ifndef HP34COMM_H |
2 | #define HP34COMM_H | |
3 | ||
28
424d792fea4f
compile for nucleo f446re & f303re with mbed 6
David Douard <david.douard@sdfa3.org>
parents:
21
diff
changeset
|
4 | #include <mbed.h> |
424d792fea4f
compile for nucleo f446re & f303re with mbed 6
David Douard <david.douard@sdfa3.org>
parents:
21
diff
changeset
|
5 | #include <CircularBuffer.h> |
5 | 6 | |
7 | /***** HP 34970A communication class ***/ | |
8 | ||
9 | #define MAX_ERRS 10 | |
8 | 10 | #define MAX_BUFF 16 |
11 | #define BUF_SIZE 16 | |
5 | 12 | |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
13 | |
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
14 | |
5 | 15 | class HPSerial { |
16 | ||
17 | public: | |
18 | typedef struct _CMD | |
19 | { | |
20 | uint8_t cmd; | |
21 | uint8_t size; | |
22 | char value[MAX_BUFF+1]; | |
23 | unsigned long id; | |
24 | } CMD; | |
21 | 25 | |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
26 | HPSerial(PinName tx, PinName rx); |
19 | 27 | |
5 | 28 | bool cmd_available(void); |
29 | bool pop(CMD& cmd); | |
30 | bool cmd_buf_full(void); | |
31 | unsigned int nerrors(uint8_t errorno); | |
21 | 32 | |
19 | 33 | void sendkey(uint8_t keycode); |
49
c146d19101a3
Refactor HPSerial to get rid of packet collision misbehavior
David Douard <david.douard@sdf3.org>
parents:
44
diff
changeset
|
34 | void send_startup_seq(); |
c146d19101a3
Refactor HPSerial to get rid of packet collision misbehavior
David Douard <david.douard@sdf3.org>
parents:
44
diff
changeset
|
35 | void send_startup_seq(uint8_t keycode); |
21 | 36 | |
5 | 37 | private: |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
38 | void pushCmd(uint8_t cmd, uint8_t size, char *payload); |
44 | 39 | void rx_irq(void); |
5 | 40 | void timeout(void); |
37
07e8ca2bdf6d
Extracted the display related functions in a Display class
David Douard <david.douard@sdf3.org>
parents:
28
diff
changeset
|
41 | void set_timer(Kernel::Clock::duration_u32 v=0ms) { |
19 | 42 | timeouter.detach(); |
37
07e8ca2bdf6d
Extracted the display related functions in a Display class
David Douard <david.douard@sdf3.org>
parents:
28
diff
changeset
|
43 | if (v > 0ms) |
19 | 44 | timeouter.attach(callback(this, &HPSerial::timeout), v); |
44 | 45 | }; |
5 | 46 | |
47 | private: | |
28
424d792fea4f
compile for nucleo f446re & f303re with mbed 6
David Douard <david.douard@sdfa3.org>
parents:
21
diff
changeset
|
48 | UnbufferedSerial serial; |
5 | 49 | uint8_t buf[BUF_SIZE]; |
50 | uint8_t head; | |
51 | CircularBuffer<CMD, 32> cmdbuf; | |
44 | 52 | CircularBuffer<uint8_t, 32> sendbuf; |
5 | 53 | unsigned long ncmd; |
54 | unsigned int errs[MAX_ERRS]; | |
55 | Ticker timeouter; | |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
56 | |
49
c146d19101a3
Refactor HPSerial to get rid of packet collision misbehavior
David Douard <david.douard@sdf3.org>
parents:
44
diff
changeset
|
57 | Thread send_thread; |
c146d19101a3
Refactor HPSerial to get rid of packet collision misbehavior
David Douard <david.douard@sdf3.org>
parents:
44
diff
changeset
|
58 | void send_pending_key(); |
c146d19101a3
Refactor HPSerial to get rid of packet collision misbehavior
David Douard <david.douard@sdf3.org>
parents:
44
diff
changeset
|
59 | bool wait_for(uint8_t); |
c146d19101a3
Refactor HPSerial to get rid of packet collision misbehavior
David Douard <david.douard@sdf3.org>
parents:
44
diff
changeset
|
60 | |
c146d19101a3
Refactor HPSerial to get rid of packet collision misbehavior
David Douard <david.douard@sdf3.org>
parents:
44
diff
changeset
|
61 | |
19 | 62 | public: |
63 | // global state machine | |
64 | typedef enum { | |
65 | GSTATE_STARTING, | |
66 | GSTATE_IDLE, | |
67 | GSTATE_TX, | |
68 | GSTATE_RX, | |
69 | NUM_GSTATES} gstate_t; | |
70 | gstate_t gstate() {return cur_gstate;}; | |
71 | /* gstate_t do_start(); */ | |
72 | /* gstate_t do_send(); */ | |
73 | /* gstate_t do_receive(); */ | |
21 | 74 | |
19 | 75 | /* typedef gstate_t(HPSerial::*gstatemethod)(); */ |
76 | /* statemethod const gstate_table[NUM_GSTATES] = { */ | |
77 | /* &HPSerial::do_start, */ | |
78 | /* &HPSerial::do_send, */ | |
79 | /* &HPSerial::do_receive, */ | |
80 | /* }; */ | |
21 | 81 | |
19 | 82 | /* gstate_t run_gstate(gstate_t cur_state); */ |
83 | private: | |
84 | gstate_t cur_gstate; | |
21 | 85 | |
19 | 86 | public: |
87 | // transmission state machine | |
88 | typedef enum { | |
89 | STATE_IDLE, | |
90 | STATE_COMMAND, | |
91 | STATE_PAYLOAD_SIZE, | |
92 | STATE_PAYLOAD, | |
93 | STATE_SENDING, | |
94 | NUM_STATES} state_t; | |
95 | state_t state() {return cur_state;}; | |
21 | 96 | |
19 | 97 | private: |
98 | typedef struct state_data { | |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
99 | uint8_t cmd; |
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
100 | uint8_t size; |
19 | 101 | uint8_t pos; |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
102 | char payload[MAX_BUFF]; |
19 | 103 | } state_data_t; |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
104 | |
19 | 105 | state_t do_state_initial(uint8_t c=0x00); |
106 | state_t do_state_command(uint8_t c); | |
107 | state_t do_state_payload_size(uint8_t c); | |
108 | state_t do_state_payload(uint8_t c); | |
109 | state_t do_state_sending(uint8_t c=0x00); | |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
110 | |
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
111 | void send_ack(uint8_t c); |
21 | 112 | |
19 | 113 | typedef state_t(HPSerial::*statemethod)(uint8_t c); |
21 | 114 | static statemethod state_table[NUM_STATES]; |
19 | 115 | state_t run_state(state_t cur_state, uint8_t c); |
18
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
116 | |
4fd621551d55
[full replacement] implement a state machine for Rx
David Douard <david.douard@logilab.fr>
parents:
10
diff
changeset
|
117 | state_t cur_state; |
19 | 118 | state_data_t tr_data; |
5 | 119 | }; |
120 | ||
19 | 121 | |
5 | 122 | #endif |