mirror of
https://github.com/rad1o/f1rmware.git
synced 2026-02-20 02:01:21 +01:00
12 lines
137 B
C
12 lines
137 B
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
void randomInit(void) {
|
|
srand(0); // adcRead!
|
|
}
|
|
|
|
int getRandom(void){
|
|
return rand();
|
|
}
|
|
|