Adding build folder with all compilations and missing cmake files

This commit is contained in:
2026-04-22 15:18:22 +02:00
parent b4f87037ac
commit f8d3c05f3c
27494 changed files with 5406753 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.4.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package upm_bmx055;
public final class BMA250E_INTERRUPT_PINS_T {
public final static BMA250E_INTERRUPT_PINS_T BMA250E_INTERRUPT_INT1 = new BMA250E_INTERRUPT_PINS_T("BMA250E_INTERRUPT_INT1");
public final static BMA250E_INTERRUPT_PINS_T BMA250E_INTERRUPT_INT2 = new BMA250E_INTERRUPT_PINS_T("BMA250E_INTERRUPT_INT2");
public final int swigValue() {
return swigValue;
}
public String toString() {
return swigName;
}
public static BMA250E_INTERRUPT_PINS_T swigToEnum(int swigValue) {
if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
return swigValues[swigValue];
for (int i = 0; i < swigValues.length; i++)
if (swigValues[i].swigValue == swigValue)
return swigValues[i];
throw new IllegalArgumentException("No enum " + BMA250E_INTERRUPT_PINS_T.class + " with value " + swigValue);
}
private BMA250E_INTERRUPT_PINS_T(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}
private BMA250E_INTERRUPT_PINS_T(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}
private BMA250E_INTERRUPT_PINS_T(String swigName, BMA250E_INTERRUPT_PINS_T swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
swigNext = this.swigValue+1;
}
private static BMA250E_INTERRUPT_PINS_T[] swigValues = { BMA250E_INTERRUPT_INT1, BMA250E_INTERRUPT_INT2 };
private static int swigNext = 0;
private final int swigValue;
private final String swigName;
}