only: new file

This commit is contained in:
Andrey 2023-10-02 09:28:35 -04:00
parent 66f204c1f0
commit 1f393a8750
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package com.rusefi.enums;
// based on ./libfirmware/can/can_common.h
//auto-generated by ToJavaEnum.java
public enum bench_test_packet_ids_e {
EVENT_COUNTERS(7798784),
RAW_ANALOG_1(7798785),
IO_CONTROL(7798786),
BOARD_STATUS(7798787),
BUTTON_COUNTERS(7798788),
IO_META_INFO(7798789),
RAW_ANALOG_2(7798790),
;
private int value;
bench_test_packet_ids_e(int v) {
value = v;
}
public int get() {
return value;
}
}