util: reorder includes alphabetically

Place system includes on top
This commit is contained in:
Guðni Már Gilbert 2024-08-08 15:05:30 +00:00
parent f628c5f912
commit a1fcb8564e
1 changed files with 7 additions and 7 deletions

View File

@ -1,13 +1,13 @@
#include "Configuration.h"
#include "ultralcd.h"
#include "menu.h"
#include "sound.h"
#include "language.h"
#include "util.h"
#include <avr/eeprom.h>
#include <avr/pgmspace.h>
#include "Configuration.h"
#include "language.h"
#include "menu.h"
#include "Prusa_farm.h"
#include "sound.h"
#include "ultralcd.h"
#include "util.h"
// Allocate the version string in the program memory. Otherwise the string lands either on the stack or in the global RAM.
static const char FW_VERSION_STR[] PROGMEM = FW_VERSION;