-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abf0789
commit 5863799
Showing
929 changed files
with
337,304 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ | |
/obj | ||
/out | ||
/cmake-build-debug-armgcc | ||
/3rd_party | ||
|
||
# eide template | ||
*.ept | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright 2023 NXP | ||
* SPDX-License-Identifier: MIT | ||
* The auto-generated can only be used on NXP devices | ||
*/ | ||
|
||
#include "events_init.h" | ||
#include <stdio.h> | ||
#include "lvgl.h" | ||
|
||
void events_init(lv_ui *ui) | ||
{ | ||
} | ||
|
||
void video_play(lv_ui *ui) | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright 2023 NXP | ||
* SPDX-License-Identifier: MIT | ||
* The auto-generated can only be used on NXP devices | ||
*/ | ||
|
||
|
||
#ifndef EVENTS_INIT_H_ | ||
#define EVENTS_INIT_H_ | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#include "gui_guider.h" | ||
|
||
void events_init(lv_ui *ui); | ||
void video_play(lv_ui *ui); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* EVENT_CB_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# images | ||
include $(PRJ_DIR)/generated/images/images.mk | ||
|
||
# GUI Guider fonts | ||
include $(PRJ_DIR)/generated/guider_fonts/guider_fonts.mk | ||
|
||
# GUI Guider customer fonts | ||
include $(PRJ_DIR)/generated/guider_customer_fonts/guider_customer_fonts.mk | ||
|
||
|
||
GEN_CSRCS += $(notdir $(wildcard $(PRJ_DIR)/generated/*.c)) | ||
|
||
DEPPATH += --dep-path $(PRJ_DIR)/generated | ||
VPATH += :$(PRJ_DIR)/generated | ||
|
||
CFLAGS += "-I$(PRJ_DIR)/generated" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright 2023 NXP | ||
* SPDX-License-Identifier: MIT | ||
* The auto-generated can only be used on NXP devices | ||
*/ | ||
|
||
#include "lvgl.h" | ||
#include <stdio.h> | ||
#include "gui_guider.h" | ||
|
||
|
||
void init_scr_del_flag(lv_ui *ui){ | ||
ui->screen_del = true; | ||
} | ||
|
||
void setup_ui(lv_ui *ui){ | ||
init_scr_del_flag(ui); | ||
setup_scr_screen(ui); | ||
lv_scr_load(ui->screen); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2023 NXP | ||
* SPDX-License-Identifier: MIT | ||
* The auto-generated can only be used on NXP devices | ||
*/ | ||
|
||
#ifndef GUI_GUIDER_H | ||
#define GUI_GUIDER_H | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#include "lvgl.h" | ||
#include "guider_fonts.h" | ||
|
||
typedef struct | ||
{ | ||
lv_obj_t *screen; | ||
bool screen_del; | ||
lv_obj_t *screen_main_text; | ||
lv_obj_t *screen_battery_bar; | ||
lv_obj_t *screen_spangroup_1; | ||
lv_obj_t *screen_label_2; | ||
lv_obj_t *screen_label_3; | ||
lv_obj_t *screen_battery_text; | ||
lv_obj_t *screen_vref; | ||
lv_obj_t *screen_temperature; | ||
}lv_ui; | ||
|
||
void init_scr_del_flag(lv_ui *ui); | ||
void setup_ui(lv_ui *ui); | ||
extern lv_ui guider_ui; | ||
void setup_scr_screen(lv_ui *ui); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif |
Oops, something went wrong.