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
      * @brief Internal buffer
62
      * @brief Internal buffer
63
      * @details A fixed buffer. TWI commands can be no longer than this.
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
   public:
68
   public:

Loading…
Cancel
Save