PinoutTemplate

This commit is contained in:
rusefillc 2024-10-22 06:41:37 -04:00
parent cb253eda61
commit 53cf35734c
3 changed files with 23 additions and 2 deletions

3
random/build.gradle Normal file
View File

@ -0,0 +1,3 @@
plugins {
id 'java'
}

View File

@ -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");
}
}
}

View File

@ -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')