FastLED 3.9.15
Loading...
Searching...
No Matches

◆ PSRamAllocate()

void * fl::PSRamAllocate ( size_t size,
bool zero )

Definition at line 41 of file allocator.cpp.

41 {
42 void *ptr = Alloc(size);
43 if (zero) {
44 memset(ptr, 0, size);
45 }
46 return ptr;
47}

Referenced by fl::PSRamAllocator< T >::Alloc().

+ Here is the caller graph for this function: