mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
## TactilityC - Add `tt_lvgl_lock()` and `tt_lvgl_unlock()` - Add `tt_thread_set_affinity()` - Add support for STL symbols ## Other - Add `Thread::setAffinity()` - `GuiService`: replace `#define` with `constexpr` - Remove log storage and log app for now - Split up ELF symbols into more groups
23 lines
984 B
C++
23 lines
984 B
C++
#include <symbols/esp_event.h>
|
|
#include <esp_event.h>
|
|
|
|
const esp_elfsym esp_event_symbols[] = {
|
|
ESP_ELFSYM_EXPORT(esp_event_loop_create),
|
|
ESP_ELFSYM_EXPORT(esp_event_loop_delete),
|
|
ESP_ELFSYM_EXPORT(esp_event_loop_create_default),
|
|
ESP_ELFSYM_EXPORT(esp_event_loop_delete_default),
|
|
ESP_ELFSYM_EXPORT(esp_event_loop_run),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_register),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_register_with),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_instance_register_with),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_instance_register),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_unregister),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_unregister_with),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_instance_unregister_with),
|
|
ESP_ELFSYM_EXPORT(esp_event_handler_instance_unregister),
|
|
ESP_ELFSYM_EXPORT(esp_event_post),
|
|
ESP_ELFSYM_EXPORT(esp_event_post_to),
|
|
ESP_ELFSYM_EXPORT(esp_event_isr_post),
|
|
ESP_ELFSYM_EXPORT(esp_event_isr_post_to),
|
|
};
|