fix: usb_cdc don't report that pm3 device is selfpowered.. (since its not by default)
This commit is contained in:
@@ -1166,9 +1166,8 @@ int CmdHF14AMfNestedHard(const char *Cmd) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int randInRange(int min, int max)
|
||||
{
|
||||
return min + (int) (rand() / (double) (RAND_MAX + 1) * (max - min + 1));
|
||||
int randInRange(int min, int max) {
|
||||
return min + (int) (rand() / (double) (RAND_MAX + 1) * (max - min + 1));
|
||||
}
|
||||
|
||||
//Fisher–Yates shuffle
|
||||
|
||||
Reference in New Issue
Block a user