Changes between Version 144 and Version 145 of Docs/825gen2/Dev/UpdatingLegacyApps


Ignore:
Timestamp:
11/18/25 09:54:30 (4 days ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v144 v145  
    5858
    595924. Some apps may use a fixed outdated file path "/dev/com3" for COM3 serial communications. This should be updated to use the CCommSerial class. For example:
    60 {{{#!c++
     60   {{{#!c++
    6161CFile file;
    6262file.Open("/dev/com3", "w");
     
    6666}
    6767}}}
    68 Update this to:
    69 {{{#!c++
     68    Update this to:
     69    {{{#!c++
    7070CCommSerial file(3);
    7171if(file.IsOpen()) {