Browse Source

Remove stray ` from STM32F1 HAL

As noted in #8585
Scott Lahteine 7 years ago
parent
commit
272f132b82
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp

+ 1
- 1
Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp View File

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

Loading…
Cancel
Save