Create display module top level

This commit is contained in:
2023-05-15 16:57:41 +01:00
parent 81f5c6aaa0
commit be666164f4
5 changed files with 129 additions and 3 deletions

View File

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

View File

@@ -4,8 +4,10 @@
*/
#include "config.h"
#include "display.h"
void app_main(void)
{
config_init();
display_init();
}