N K
/
GaNtroller
a fork of priustroller
Fork of priustroller_current by
main.cpp
- Committer:
- nki
- Date:
- 2015-05-02
- Revision:
- 52:4d4b2b3ef8dc
- Parent:
- 51:14112834b067
File content as of revision 52:4d4b2b3ef8dc:
#include "includes.h" #include "transforms.h" #include "filters.h" #include "context.h" #include "core.h" #include "meta.h" #include "sensors.h" #include "callbacks.h" int main() { Context *context = new Context(); context->ConfigureOutputs(D13, D3, D6, D2); context->ConfigureCurrentSensors(A1, A2, 0.0016f, 0.7f); //scale in V/A, filter strength context->ConfigureIdPidController(0.0001f, 0.0f, 0.0f, 1.0f, -1.0f); context->ConfigureIqPidController(0.0001f, 0.0f, 0.0f, 1.0f, -1.0f); context->ConfigureThrottle(A0, 0.9f, 2.5f, 0.8f); //last term is LPF strength context->ConfigurePositionSensor(A3, A4, 0.366f, 0.655f, 0.355f, 0.626f, 205.0f); context->ConfigureReference(200.0f); // max phase current context->ConfigureDebugger(1, 2000); context->AttachCallBack(&fast, 5000); context->AttachCallBack(&slow, 10); context->AttachCallBack(&debug, 10); context->AttachCallBack(&log, 500); context->Start(); }