widgets_init.h 988 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright 2025 NXP
  3. * NXP Proprietary. This software is owned or controlled by NXP and may only be used strictly in
  4. * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing,
  5. * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to
  6. * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license
  7. * terms, then you may not retain, install, activate or otherwise use the software.
  8. */
  9. #ifndef WIDGET_INIT_H
  10. #define WIDGET_INIT_H
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #include "lvgl.h"
  15. #include "gui_guider.h"
  16. __attribute__((unused)) void kb_event_cb(lv_event_t *e);
  17. __attribute__((unused)) void ta_event_cb(lv_event_t *e);
  18. #if LV_USE_ANALOGCLOCK != 0
  19. void clock_count(int *hour, int *min, int *sec);
  20. void digital_clock_count(int * hour, int * minute, int * seconds, char * meridiem);
  21. #endif
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif