Browse Source

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

aleknest 5 years ago
parent
commit
cf87d3c700
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/twibus.h

+ 1
- 1
Marlin/src/feature/twibus.h View File

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

Loading…
Cancel
Save