| 146 | #define TO_FP32(f) ((uint32_t)((f)*65536. + 0.5)) |
| 147 | |
| 148 | struct VectorDisplayMessage { |
| 149 | char what; |
| 150 | char what2; |
| 151 | union { |
| 152 | uint8_t button; |
| 153 | struct { |
| 154 | int16_t x; |
| 155 | int16_t y; |
| 156 | } xy; |
| 157 | } data; |
| 158 | } __attribute__((packed)); |
| 159 | |
| 160 | class VectorDisplayClass : public Print { |
| 161 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected