auto-sync

This commit is contained in:
rusEfi 2016-09-13 13:02:56 -04:00
parent 1d4d095415
commit abaa6584d7
2 changed files with 4 additions and 8 deletions

View File

@ -111,16 +111,12 @@ public class Table2D extends TableWithData {
}
@Override
public void populateTable(byte[] input, int romRamOffset) throws ArrayIndexOutOfBoundsException, IndexOutOfBoundsException {
public void populateTable(byte[] input, int romRamOffset) throws IndexOutOfBoundsException {
centerLayout.setRows(2);
centerLayout.setColumns(this.getDataSize());
try {
axis.populateTable(input, romRamOffset);
super.populateTable(input, romRamOffset);
} catch (ArrayIndexOutOfBoundsException ex) {
throw new ArrayIndexOutOfBoundsException();
}
axis.populateTable(input, romRamOffset);
super.populateTable(input, romRamOffset);
// add to table
for (int i = 0; i < this.getDataSize(); i++) {

View File

@ -38,7 +38,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see EngineSnifferPanel
*/
public class Launcher {
public static final int CONSOLE_VERSION = 20160912;
public static final int CONSOLE_VERSION = 20160913;
public static final boolean SHOW_STIMULATOR = false;
private static final String TAB_INDEX = "main_tab";
protected static final String PORT_KEY = "port";