mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
### TactilityC - Create UART HAL - Refactor locking APIs - Bind new C++ functionality - Bind new LVGL functionality ### Apps - Remove Serial Console as it has been ported as an external app
18 lines
426 B
C++
18 lines
426 B
C++
#include <private/elf_symbol.h>
|
|
#include <cstddef>
|
|
|
|
#include <symbols/pthread.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
const esp_elfsym pthread_symbols[] = {
|
|
ESP_ELFSYM_EXPORT(pthread_create),
|
|
ESP_ELFSYM_EXPORT(pthread_attr_init),
|
|
ESP_ELFSYM_EXPORT(pthread_attr_setstacksize),
|
|
ESP_ELFSYM_EXPORT(pthread_detach),
|
|
ESP_ELFSYM_EXPORT(pthread_join),
|
|
ESP_ELFSYM_EXPORT(pthread_exit),
|
|
// delimiter
|
|
ESP_ELFSYM_END
|
|
};
|