Merge pull request #15 from mist-01/master
Add option to kick drawer at the start of the print
This commit is contained in:
commit
b1b412531e
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.swp
|
|
@ -208,6 +208,7 @@
|
|||
*DefaultCashDrawerType: 0DoNothing
|
||||
*CashDrawerType 0DoNothing/Do Nothing: ""
|
||||
*CashDrawerType 1OpenDrawer/Open After Document: ""
|
||||
*CashDrawerType 2OpenDrawerBefore/Open Before Document: ""
|
||||
*CloseUI: *CashDrawerType
|
||||
*CloseGroup: CashDrawerGroup
|
||||
|
||||
|
|
|
@ -333,6 +333,9 @@ inline void initializeSettings(char * commandLineOptionSettings, struct settings
|
|||
void jobSetup(struct settings_ settings)
|
||||
{
|
||||
outputCommand(printerInitializeCommand);
|
||||
if (settings.drawerKick == 2){
|
||||
outputCommand(drawerKickCommand);
|
||||
}
|
||||
}
|
||||
|
||||
void pageSetup(struct settings_ settings, cups_page_header_t header)
|
||||
|
@ -353,7 +356,7 @@ void endJob(struct settings_ settings)
|
|||
{
|
||||
outputCommand(pageCutCommand);
|
||||
}
|
||||
if (settings.drawerKick)
|
||||
if (settings.drawerKick == 1)
|
||||
{
|
||||
outputCommand(drawerKickCommand);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue