PinoutTemplate
This commit is contained in:
parent
cb253eda61
commit
53cf35734c
|
@ -0,0 +1,3 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
package com.rusefi;
|
||||
|
||||
public class PinoutTemplate {
|
||||
private static final String PIN_PREFIX = "X1-";
|
||||
private static final int TO = 73;
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
|
||||
for (int i = 1; i <= TO; i++) {
|
||||
System.out.println(" - pin: " + PIN_PREFIX + i);
|
||||
System.out.println(" function: ");
|
||||
System.out.println(" type: ");
|
||||
|
||||
if (i % 10 == 0)
|
||||
System.out.println("\n");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,8 +1,7 @@
|
|||
rootProject.name = 'can-log-tools'
|
||||
|
||||
include ':random'
|
||||
include ':reader'
|
||||
project(':reader').projectDir = new File('reader')
|
||||
include ':playback'
|
||||
project(':playback').projectDir = new File('playback')
|
||||
include ':peak-can-basic'
|
||||
project(':peak-can-basic').projectDir = new File('ext/peak-can-basic')
|
||||
|
|
Loading…
Reference in New Issue