indilib / indi

INDI Core Library Repository
https://www.indilib.org
GNU Lesser General Public License v2.1
377 stars 394 forks source link

Migrate Astromech focuser #2134

Closed naheedsa closed 1 month ago

naheedsa commented 1 month ago

@knro , defined inside .cpp file

/ Define Driver version /

define INDI_ASTROMECHFOC_VERSION_MAJOR 0

define INDI_ASTROMECHFOC_VERSION_MINOR 2

knro commented 1 month ago

We don't need that. Just set it directly in the constructor i.e.

setVersion(0, 2);

naheedsa commented 1 month ago

We don't need that. Just set it directly in the constructor i.e.

setVersion(0, 2);

Done