Add COIN_PROCESSER::NONE (machine without coin processing)

This commit is contained in:
Siegfried Siegert 2024-03-08 12:44:41 +01:00
parent ba7d801330
commit d5786aa5ab
Signed by: SiegfriedSiegert
GPG Key ID: 68371E015E8F0B03
2 changed files with 5 additions and 1 deletions

View File

@ -230,6 +230,9 @@ void DeviceControllerDiag::sub_componentAssessment()
// -----------------------------------------------------------------------------------------------
switch (devPara.kindOfCoinChecker) {
case 0:
this->coinProcessorType = nsDeviceControllerInterface::COIN_PROCESSOR::NONE;
break;
case 1:
case 2:
this->coinProcessorType = nsDeviceControllerInterface::COIN_PROCESSOR::ESCROW;

View File

@ -234,7 +234,8 @@ namespace nsDeviceControllerInterface {
enum class COIN_PROCESSOR : quint8 {
CHANGER,
ESCROW
ESCROW,
NONE
};
enum class BILL_ACCEPTOR : quint8 {