Fix: for load as plugin on target device
This commit is contained in:
parent
d0445949d2
commit
3ac91305d4
@ -418,6 +418,7 @@ uint8_t epi_mifGetCardType(uint8_t const *holder);
|
|||||||
|
|
||||||
void gpi_storeDcDataValid(bool isVal);
|
void gpi_storeDcDataValid(bool isVal);
|
||||||
bool gpi_areDcDataValid();
|
bool gpi_areDcDataValid();
|
||||||
|
bool epi_areDcDataValid();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -51,6 +51,7 @@ void ATBDeviceControllerPlugin::requestStartCashInput(const QString & amount)
|
|||||||
qCritical() << "Start Cash vending with amount = " << amount;
|
qCritical() << "Start Cash vending with amount = " << amount;
|
||||||
|
|
||||||
uint32_t amountInt = static_cast<uint32_t>(amount.toUInt());
|
uint32_t amountInt = static_cast<uint32_t>(amount.toUInt());
|
||||||
|
|
||||||
hw->cash_startPayment(amountInt);
|
hw->cash_startPayment(amountInt);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4100,7 +4100,10 @@ void hwapi::sys_restoreDeviceParameter(struct T_devices *deviceSettings) const
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool hwapi::sys_areDCdataValid(void) const
|
||||||
|
{
|
||||||
|
return epi_areDcDataValid();
|
||||||
|
}
|
||||||
|
|
||||||
/* ---------------------------------------------------------------------------------------------
|
/* ---------------------------------------------------------------------------------------------
|
||||||
// ------------ supervise all hardware components
|
// ------------ supervise all hardware components
|
||||||
|
Loading…
Reference in New Issue
Block a user