浏览代码

Allow reply() to use const string with no warning

Scott Lahteine 8 年前
父节点
当前提交
79ba983782
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1
    0
      Marlin/twibus.h

+ 1
- 0
Marlin/twibus.h 查看文件

@@ -183,6 +183,7 @@ class TWIBus {
183 183
        * @details Send the buffer and clear it.
184 184
        */
185 185
       void reply(char str[]=NULL);
186
+      inline void reply(const char str[]) { this->reply((char*)str); }
186 187
 
187 188
     #endif
188 189
 

正在加载...
取消
保存