mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +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
19 lines
616 B
C++
19 lines
616 B
C++
#include <private/elf_symbol.h>
|
|
#include <cstddef>
|
|
|
|
#include <symbols/cplusplus.h>
|
|
|
|
extern "C" {
|
|
extern void* _Znwj(uint32_t size); // operator new(unsigned int)
|
|
extern void _ZdlPvj(void* p, uint64_t size); // operator delete(void*, unsigned int)
|
|
extern void __cxa_pure_virtual();
|
|
}
|
|
|
|
const esp_elfsym cplusplus_symbols[] = {
|
|
ESP_ELFSYM_EXPORT(_Znwj), // operator new(unsigned int)
|
|
ESP_ELFSYM_EXPORT(_ZdlPvj), // operator delete(void*, unsigned int)
|
|
ESP_ELFSYM_EXPORT(__cxa_pure_virtual), // class-related, see https://arobenko.github.io/bare_metal_cpp/
|
|
// delimiter
|
|
ESP_ELFSYM_END
|
|
};
|