first lines of code

This commit is contained in:
rusefi 2017-03-01 14:16:53 -05:00
parent 6548423a86
commit 16a33d975e
9 changed files with 62 additions and 0 deletions

1
.idea/description.html Normal file
View File

@ -0,0 +1 @@
<html>Simple <b>Java</b> application that includes a class with <code>main()</code> method</html>

12
.idea/misc.xml Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="EntryPointsManager">
<entry_points version="2.0" />
</component>
<component name="ProjectKey">
<option name="state" value="project://e2804f05-5315-4fc6-a121-c522a6c26470" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/opensr5_flash.iml" filepath="$PROJECT_DIR$/opensr5_flash.iml" />
</modules>
</component>
</project>

View File

@ -0,0 +1,3 @@
<template>
<input-field default="com.company">IJ_BASE_PACKAGE</input-field>
</template>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

BIN
lib/jssc-src.jar Normal file

Binary file not shown.

BIN
lib/jssc.jar Normal file

Binary file not shown.

12
opensr5_flash.iml Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

20
src/com/rusefi/Main.java Normal file
View File

@ -0,0 +1,20 @@
package com.rusefi;
public class Main {
public static void main(String[] args) {
System.out.println("OpenSR5 - load/program tune via serial port utility");
System.out.println(" (c) 2017 Andrey Belomutskiy");
System.out.println(" https://github.com/rusefi/opensr5_flash");
System.out.flush();
if (args.length < 1) {
System.err.println("Usage:");
System.err.println("opensr5 DEFINITION_FILE.INI");
System.exit(-1);
}
String projectIniFileName = args[0];
}
}