Camden Dixie O'Brien 0634787df3 Add a console with a reboot command
Couldn't just call the component "console" as that conflicted with the
ESP-IDF component, so opted for "console-wrapper".
2023-05-16 00:07:43 +01:00

16 lines
229 B
C

/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) Camden Dixie O'Brien
*/
#include "console.h"
#include "display.h"
#include "settings.h"
void app_main(void)
{
console_init();
settings_init();
display_init();
}