瀏覽代碼

Remove stray ` from STM32F1 HAL

As noted in #8585
Scott Lahteine 7 年之前
父節點
當前提交
272f132b82
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp

+ 1
- 1
Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp 查看文件

@@ -83,7 +83,7 @@ bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
83 83
 bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
84 84
   for (int i = 0; i < size; i++) {
85 85
     uint8_t c = HAL_STM32F1_eeprom_content[pos + i];
86
-    if (writing) value[i] = c`;
86
+    if (writing) value[i] = c;
87 87
     crc16(crc, &c, 1);
88 88
   }
89 89
   pos += size;

Loading…
取消
儲存