Example Usage
void esp_fill_random(uint8_t* buf, size_t len) {
  for(size_t i = 0; i < len; i++) {
    buf[i] = random(0, 1000);
  }
}