Changes between Version 191 and Version 192 of Docs/825gen2/Dev/UpdatingLegacyApps


Ignore:
Timestamp:
04/28/26 07:15:58 (6 days ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/UpdatingLegacyApps

    v191 v192  
    7979   file.Write(str);
    8080}
     81}}}
     82
     833. Some apps may use a fixed file path "/dev/usb/usblp0" for USB printer support. The 825 Gen2 path is "/dev/usb/lp0". Update this code such as:
     84{{{#!c++
     85  char printPort[18];
     86#if ARM64
     87  strcpy(printPort, "/dev/usb/lp0");
     88#else
     89  strcpy(printPort, "/dev/usblp0");
     90#endif
    8191}}}
    8292