cash2ecash

cash2ecash: cash acceptor that issues digital cash (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit f95a1e595d62f3dc5e0357cb0b74ce692ab9d251
parent 42c3a0d6a1a283bf84845336876b14b3190376b7
Author: Manuel Geissbühler <manuel@debian>
Date:   Mon, 30 Dec 2024 13:29:59 +0100

debugging

Diffstat:
Msrc/cash2ecash.cpp | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/cash2ecash.cpp b/src/cash2ecash.cpp @@ -36,9 +36,9 @@ char world[] = "wold"; char *string = hello; Gui gui; Screen screenWelcome = ScreenWelcome(); -Screen screenIdentification = ScreenIdentification(); -Screen screenConnection = ScreenConnection(); -Screen screenAcceptCash = ScreenAcceptCash(string); +//Screen screenIdentification = ScreenIdentification(); +//Screen screenConnection = ScreenConnection(); +//Screen screenAcceptCash = ScreenAcceptCash(string); void guiDriver(); typedef void(*action_t)(); @@ -63,7 +63,7 @@ void actionEventUnexpected(){ void actionEventStart(){ std::cout << "Action Event Start called" << std::endl; - gui.setActiveScreen(&screenIdentification); + //gui.setActiveScreen(&screenIdentification); } void actionEventAbortIdent(){ @@ -87,7 +87,7 @@ void actionEventWakeup() { std::cout << "Action Event xx called" << std::endl; } void actionEventIdentificationSuccess(){ std::cout << "Action Event xx called" << std::endl; - gui.setActiveScreen(&screenConnection); + //gui.setActiveScreen(&screenConnection); } void actionEventBankTokenDone(){ @@ -100,7 +100,7 @@ void actionEventBankWithdrawalDone(){ void actionEventBankWStatusConfirmed(){ std::cout << "Action Event Bank Withdrawal Status Confirmed called" << std::endl; - gui.setActiveScreen(&screenAcceptCash); + //gui.setActiveScreen(&screenAcceptCash); } void actionEventBankWStatusPending(){