Rename config module to settings

This commit is contained in:
2023-05-15 17:39:29 +01:00
parent cee2e368dc
commit 3ab6c20e58
7 changed files with 56 additions and 53 deletions

View File

@@ -1,5 +1,5 @@
idf_component_register(
SRCS "main.c"
INCLUDE_DIRS "."
REQUIRES config display
REQUIRES display settings
)

View File

@@ -3,11 +3,11 @@
* Copyright (c) Camden Dixie O'Brien
*/
#include "config.h"
#include "display.h"
#include "settings.h"
void app_main(void)
{
config_init();
settings_init();
display_init();
}