45 lines
857 B
C++
45 lines
857 B
C++
/**
|
|
* @file efiGpio.cpp
|
|
*
|
|
* @date Sep 26, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
|
*/
|
|
|
|
#include "main.h"
|
|
#if EFI_GPIO
|
|
#include "efiGpio.h"
|
|
#include "io_pins.h"
|
|
|
|
pin_output_mode_e OUTPUT_MODE_DEFAULT = OM_DEFAULT;
|
|
|
|
// todo: clean this mess, this should become 'static'/private
|
|
NamedOutputPin outputs[IO_PIN_COUNT];
|
|
engine_pins_s enginePins;
|
|
|
|
NamedOutputPin::NamedOutputPin() : OutputPin() {
|
|
|
|
}
|
|
|
|
OutputPin::OutputPin() {
|
|
modePtr = &OUTPUT_MODE_DEFAULT;
|
|
}
|
|
|
|
void OutputPin::setValue(int logicValue) {
|
|
doSetOutputPinValue2(this, logicValue);
|
|
}
|
|
|
|
bool_t OutputPin::getLogicValue() {
|
|
return currentLogicValue;
|
|
}
|
|
|
|
void OutputPin::setDefaultPinState(pin_output_mode_e *outputMode) {
|
|
#if EFI_GPIO
|
|
pin_output_mode_e mode = *outputMode;
|
|
assertOMode(mode);
|
|
this->modePtr = outputMode;
|
|
#endif
|
|
setValue(false); // initial state
|
|
}
|
|
|
|
#endif /* EFI_GPIO */
|