ソースを参照

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;

読み込み中…
キャンセル
保存