Prius IPM controller

Dependencies:   mbed

Fork of analoghalls5_5 by N K

main.cpp

Committer:
bwang
Date:
2015-03-08
Revision:
11:dccbaa9274c5
Parent:
10:b4abecccec7a
Child:
24:f1ff9c7256b5

File content as of revision 11:dccbaa9274c5:

#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(D6, D13, D3, D8);
    context->ConfigureCurrentSensors(A1, A2, 0.01, 0.95);
    context->ConfigurePidControllers(0.001f, 0.1f, 0.0f, 5.0f, -5.0f);
    context->ConfigureThrottle(A0, 0.8f, 3.0f);
    context->ConfigurePositionSensor(A4, A5, 0.249f, 0.497f, 0.231f, 0.499f, 205.0f);
    context->AttachCallBack(&fast, 5000);
    context->AttachCallBack(&slow, 10);
    context->AttachCallBack(&debug, 10);
    context->Start();
}