aa

Dependencies:   mbed TrapezoidControl QEI

Input/Rotaryencoder/Rotaryencoder.cpp

Committer:
7ka884
Date:
2018-09-10
Revision:
1:b1219d8ca117
Child:
4:ba9df71868df
Child:
5:3ae504b88679

File content as of revision 1:b1219d8ca117:

#include "Rotaryencoder.h"
#include "mbed.h"

#include "../../System/Process/InterruptProcess.h"

InterruptIn BoardRtInt[] = {
    InterruptIn(RT11_PIN),
    InterruptIn(RT12_PIN),
    
    InterruptIn(RT21_PIN),
    InterruptIn(RT22_PIN),
};

namespace ROTARYENCODER {
    void Int::Initialize() {
        BoardRtInt[0].mode(PullUp);
        BoardRtInt[1].mode(PullUp);
        BoardRtInt[2].mode(PullUp);
        BoardRtInt[3].mode(PullUp);

        BoardRtInt[0].fall(int0);
        BoardRtInt[1].fall(int1);
        BoardRtInt[2].fall(int2);
        BoardRtInt[3].fall(int3);
    }
}