Skip to content

Commit

Permalink
PinoutTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed Oct 22, 2024
1 parent cb253ed commit 53cf357
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
3 changes: 3 additions & 0 deletions random/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
plugins {
id 'java'
}
19 changes: 19 additions & 0 deletions random/src/main/java/com/rusefi/PinoutTemplate.java
Original file line number Diff line number Diff line change
@@ -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");
}
}
}
3 changes: 1 addition & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -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')

0 comments on commit 53cf357

Please sign in to comment.