auto-sync
This commit is contained in:
parent
97152e9a5c
commit
8a6e27797e
|
@ -76,7 +76,7 @@ void baseHardwareInit(void) {
|
|||
// looks like this holds a random value on start? Let's set a nice clean zero
|
||||
DWT_CYCCNT = 0;
|
||||
|
||||
// todo: need to decide what value we want BOR_Set(BOR_Level_3);
|
||||
BOR_Set(BOR_Level_1); // one step above default value
|
||||
}
|
||||
|
||||
void DebugMonitorVector(void) {
|
||||
|
|
|
@ -249,5 +249,5 @@ int getRusEfiVersion(void) {
|
|||
return 123; // this is here to make the compiler happy about the unused array
|
||||
if (UNUSED_CCM_SIZE[0] * 0 != 0)
|
||||
return 3211; // this is here to make the compiler happy about the unused array
|
||||
return 20170214;
|
||||
return 20170218;
|
||||
}
|
||||
|
|
|
@ -8,7 +8,11 @@ import static com.rusefi.AutoTest.*;
|
|||
* 2/22/2015
|
||||
*/
|
||||
public class RealHwTest {
|
||||
public static void main(String[] args) {
|
||||
private static final long SECOND = 1000L;
|
||||
|
||||
public static void main(String[] args) throws InterruptedException {
|
||||
System.out.println("Sleeping to give OS time to connect VCP driver");
|
||||
Thread.sleep(45 * SECOND);
|
||||
long start = System.currentTimeMillis();
|
||||
String port = startRealHardwareTest(args);
|
||||
|
||||
|
|
Loading…
Reference in New Issue