try to fix submodule

This commit is contained in:
2023-11-09 19:02:15 -05:00
parent c1d45aa443
commit deea94b076
366 changed files with 40228 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
#ifndef FOCMOTOR_H
#define FOTMOTOR_H
#include "Arduino.h"
class FOCDriver{
public:
virtual int init() = 0;
virtual void enable() = 0;
virtual void disable() = 0;
long pwm_frequency;
float voltage_power_supply;
float voltage_limit;
bool initialized = false;
void* params = 0;
};
#endif