
Commands
GS L Set Feed Length
Description
Sets the distance the print media will advance upon receipt of a form feed (FF or ESC E) command. The distance is defined as n/203 inches. The number of dots = n1 * 256 + n2.
Expression
ASCII  | GS L n1 n2  | 
Decimal  | 29 76 n1 n2  | 
Hex  | 1D 4C n1 n2  | 
Parameters
n1 the most significant byte
n2 the least significant byte
Inches/203 = (n1 * 256) + n2
Length  | # of Dots  | n1  | n2  | |
(in inches)  | ||||
  | 
  | 
  | ||
0.5  | 102  | 0  | 102  | |
1.0  | 203  | 0  | 203  | |
2.0  | 406  | 1  | 150  | |
3.0  | 609  | 2  | 97  | |
4.0  | 812  | 3  | 44  | |
5.0  | 1015  | 3  | 247  | |
6.0  | 1218  | 4  | 194  | |
7.0  | 1421  | 5  | 141  | |
8.0  | 1624  | 6  | 88  | 
Example
43