Browse Source

More compatible uint8_t for Experimental i2c Bus buffer (#15788)

pull/1/head
aleknest 5 years ago
committed by Scott Lahteine
parent
commit
cf87d3c700
  1. 2
      Marlin/src/feature/twibus.h

2
Marlin/src/feature/twibus.h

@ -62,7 +62,7 @@ class TWIBus {
* @brief Internal buffer
* @details A fixed buffer. TWI commands can be no longer than this.
*/
char buffer[TWIBUS_BUFFER_SIZE];
uint8_t buffer[TWIBUS_BUFFER_SIZE];
public:

Loading…
Cancel
Save