mirror of
https://github.com/espressif/esp-idf
synced 2025-03-21 15:09:07 -04:00
15 lines
203 B
C
15 lines
203 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
#include <string.h>
|
|
#include <stddef.h>
|
|
|
|
#include "esp_system.h"
|
|
|
|
uint32_t esp_random(void)
|
|
{
|
|
return (uint32_t)rand();
|
|
}
|
|
|