diff options
| author | QMK Bot | 2025-11-11 13:21:26 +0100 |
|---|---|---|
| committer | QMK Bot | 2025-11-11 13:21:26 +0100 |
| commit | 019cba746d1408365b906fb9d6163d9b0ab204ec (patch) | |
| tree | bfbc4c305d5d6e95f69b0912a3b08b2a771090c1 /quantum/painter/qp_comms.h | |
| parent | 28eeb92f8eec5b8268d2a74ad0561670d14e189a (diff) | |
| parent | e7ad19bb953c6f430fb3501386b96962dbe9912c (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum/painter/qp_comms.h')
| -rw-r--r-- | quantum/painter/qp_comms.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/painter/qp_comms.h b/quantum/painter/qp_comms.h index 8fbf25c201..dc5892b1bb 100644 --- a/quantum/painter/qp_comms.h +++ b/quantum/painter/qp_comms.h @@ -19,7 +19,7 @@ uint32_t qp_comms_send(painter_device_t device, const void* data, uint32_t byte_ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Comms APIs that use a D/C pin -void qp_comms_command(painter_device_t device, uint8_t cmd); -void qp_comms_command_databyte(painter_device_t device, uint8_t cmd, uint8_t data); +bool qp_comms_command(painter_device_t device, uint8_t cmd); +bool qp_comms_command_databyte(painter_device_t device, uint8_t cmd, uint8_t data); uint32_t qp_comms_command_databuf(painter_device_t device, uint8_t cmd, const void* data, uint32_t byte_count); -void qp_comms_bulk_command_sequence(painter_device_t device, const uint8_t* sequence, size_t sequence_len); +bool qp_comms_bulk_command_sequence(painter_device_t device, const uint8_t* sequence, size_t sequence_len); |