| 52 | class PSRamMemoryResource : public memory_resource { |
| 53 | protected: |
| 54 | void* do_allocate(fl::size bytes) override { |
| 55 | return fl::PSRamAllocate(bytes, true); // zero-initialized |
| 56 | } |
| 57 | |
| 58 | void do_deallocate(void* p, fl::size bytes) override { |
| 59 | FASTLED_UNUSED(bytes); |
nothing calls this directly
no test coverage detected