Browse Source

General cleanup

vanilla_fb_2.0.x
Scott Lahteine 5 years ago
parent
commit
e27f031a55
  1. 2
      Marlin/src/HAL/AVR/eeprom.cpp
  2. 2
      Marlin/src/HAL/DUE/eeprom_flash.cpp
  3. 2
      Marlin/src/HAL/DUE/eeprom_wired.cpp
  4. 2
      Marlin/src/HAL/STM32F1/eeprom_wired.cpp
  5. 2
      Marlin/src/HAL/STM32_F4_F7/eeprom_flash.cpp
  6. 2
      Marlin/src/HAL/STM32_F4_F7/eeprom_wired.cpp
  7. 2
      Marlin/src/HAL/TEENSY31_32/eeprom.cpp
  8. 2
      Marlin/src/HAL/TEENSY35_36/eeprom.cpp
  9. 2
      Marlin/src/core/millis_t.h
  10. 2
      Marlin/src/inc/Conditionals_adv.h
  11. 2
      buildroot/bin/generate_version
  12. 2
      buildroot/share/PlatformIO/scripts/common-features-dependencies.h
  13. 2
      buildroot/share/extras/header.h
  14. 2
      buildroot/share/fonts/README.md
  15. 2
      buildroot/share/fonts/genallfont.sh
  16. 2
      buildroot/share/vscode/auto_build.py

2
Marlin/src/HAL/AVR/eeprom.cpp

@ -55,7 +55,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/HAL/DUE/eeprom_flash.cpp

@ -993,7 +993,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/HAL/DUE/eeprom_wired.cpp

@ -58,7 +58,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/HAL/STM32F1/eeprom_wired.cpp

@ -68,7 +68,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/HAL/STM32_F4_F7/eeprom_flash.cpp

@ -92,7 +92,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/HAL/STM32_F4_F7/eeprom_wired.cpp

@ -58,7 +58,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/HAL/TEENSY31_32/eeprom.cpp

@ -54,7 +54,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/HAL/TEENSY35_36/eeprom.cpp

@ -58,7 +58,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
crc16(crc, &v, 1); crc16(crc, &v, 1);
pos++; pos++;
value++; value++;
}; }
return false; return false;
} }

2
Marlin/src/core/millis_t.h

@ -16,7 +16,7 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
* *
*/ */
#pragma once #pragma once

2
Marlin/src/inc/Conditionals_adv.h

@ -208,7 +208,7 @@
#endif #endif
#endif #endif
#if ENABLED(FYSETC_MINI_12864_2_1, FYSETC_242_OLED_12864) #if EITHER(FYSETC_MINI_12864_2_1, FYSETC_242_OLED_12864)
#define LED_CONTROL_MENU #define LED_CONTROL_MENU
#define LED_USER_PRESET_STARTUP #define LED_USER_PRESET_STARTUP
#define LED_COLOR_PRESETS #define LED_COLOR_PRESETS

2
buildroot/bin/generate_version

@ -63,7 +63,7 @@ cat > "${DIR}/Version.h" <<EOF
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
* *
*/ */
#pragma once #pragma once

2
buildroot/share/PlatformIO/scripts/common-features-dependencies.h

@ -16,7 +16,7 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
* *
*/ */
#pragma once #pragma once

2
buildroot/share/extras/header.h

@ -16,7 +16,7 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
* *
*/ */

2
buildroot/share/fonts/README.md

@ -16,7 +16,7 @@ http://creativecommons.org/publicdomain/zero/1.0/
- ISO10646_Kana.fon ([fe2bd23](https://github.com/MarlinFirmware/Marlin/commit/fe2bd237d556439499dfdee852c1550c7a16430a)) - ISO10646_Kana.fon ([fe2bd23](https://github.com/MarlinFirmware/Marlin/commit/fe2bd237d556439499dfdee852c1550c7a16430a))
- Marlin_symbols.fon ([fe2bd23](https://github.com/MarlinFirmware/Marlin/commit/fe2bd237d556439499dfdee852c1550c7a16430a)) - Marlin_symbols.fon ([fe2bd23](https://github.com/MarlinFirmware/Marlin/commit/fe2bd237d556439499dfdee852c1550c7a16430a))
Additional changes to the original font files distributed with Marlin are copyrighted under the terms of the [GPLv3](http://www.gnu.org/licenses/gpl-3.0.txt) license. Additional changes to the original font files distributed with Marlin are copyrighted under the terms of the [GPLv3](https://www.gnu.org/licenses/gpl-3.0.txt) license.
## Documentation ## Documentation

2
buildroot/share/fonts/genallfont.sh

@ -116,7 +116,7 @@ if [ 1 = 1 ]; then
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
* *
*/ */
#include <U8glib.h> #include <U8glib.h>

2
buildroot/share/vscode/auto_build.py

@ -18,7 +18,7 @@
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
# #
####################################### #######################################

Loading…
Cancel
Save