I do not.
The telescope is the only thing plug into the pi now. Pi is running raspbian with kernel version: 4.19.97-v7l+
lsusb yields:
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 004: ID 04cc:0000 ST-Ericsson
Bus 001 Device 002: ID 2109:3431 VIA Labs, Inc. Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Plugging in the telescope yields the following messages:
[589295.060198] usb 1-1.4: new high-speed USB device number 4 using xhci_hcd
[589295.191367] usb 1-1.4: New USB device found, idVendor=04cc, idProduct=0000, bcdDevice= 2.30
[589295.191383] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[589295.191396] usb 1-1.4: Product: Meade eFinder Serial Emulator
[589295.191409] usb 1-1.4: Manufacturer: Meade
[589295.191420] usb 1-1.4: SerialNumber: 1234567890
[589295.201512] cdc_acm 1-1.4:1.0: Zero length descriptor references
[589295.201541] cdc_acm: probe of 1-1.4:1.0 failed with error -22

Read More...

Doesn't look like my previous attempt to post made it through, apologies if it did and this is a double post.

I don't know if this has already been resolved, but if it has not I'd be willing to take a crack at it. My telescope is a Meade 8" ETX-LS, not sure if it's the same are the original posters or not but it has the lsusb shows the same 04cc:0000 ST-Ericsson. I would love to get my raspberry pi to talk/control this telescope.
I have limited experience in Linux (Raspbian). I can google things, get around and follow directions. I'd likely need a good deal of handholding in this adventure though.

I followed instructions on indilib.org/forum/ekos/1045-indi-support...s.html?start=24#8522
Copied the files, I assume the file 'dcd-acm.h' in the post was 'cdc-acm.h', created the Makefile and ran make. I then get the following error:

make -C /lib/modules/4.19.97-v7l+/build SUBDIRS=/home/pi/meade-serial modules
make[1]: Entering directory '/usr/src/linux-headers-4.19.97-v7l+'
CC [M] /home/pi/meade-serial/cdc-acm.o
/home/pi/meade-serial/cdc-acm.c: In function ‘wait_serial_change’:
/home/pi/meade-serial/cdc-acm.c:967:8: error: implicit declaration of function ‘signal_pending’; did you mean ‘timer_pending’? [-Werror=implicit-function-declaration]
if (signal_pending(current))
^~~~~~~~~~~~~~
timer_pending
cc1: some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:310: /home/pi/meade-serial/cdc-acm.o] Error 1
make[1]: *** [Makefile:1522: _module_/home/pi/meade-serial] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.19.97-v7l+'
make: *** [Makefile:5: default] Error 2

Read More...

Hi,
I don't know if this was every done, but if it wasn't I'd be willing to take a crack at it. I have a Meade ETX-LS 8" ACF, not sure if it's the same telescope as the one that initially started this thread but lsusb shows the same ST-Ericsson 04cc:0000 device.
I have some experience in Linux, not a lot. I can google things, and follow directions. I have some experience and training in software but it was many moons ago and I'm long out of the field.

I've followed the initial directions in indilib.org/forum/ekos/1045-indi-support...s.html?start=24#8522
I assumed that dcd-acm.h was supposed to be cdc-acm.h
I copied the files and created the Makefile. After running make I get the following error:

make -C /lib/modules/4.19.97-v7l+/build SUBDIRS=/home/pi/meade-serial modules
make[1]: Entering directory '/usr/src/linux-headers-4.19.97-v7l+'
CC [M] /home/pi/meade-serial/cdc-acm.o
/home/pi/meade-serial/cdc-acm.c: In function ‘wait_serial_change’:
/home/pi/meade-serial/cdc-acm.c:967:8: error: implicit declaration of function ‘signal_pending’; did you mean ‘timer_pending’? [-Werror=implicit-function-declaration]
if (signal_pending(current))
^~~~~~~~~~~~~~
timer_pending
cc1: some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:310: /home/pi/meade-serial/cdc-acm.o] Error 1
make[1]: *** [Makefile:1522: _module_/home/pi/meade-serial] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.19.97-v7l+'
make: *** [Makefile:5: default] Error 2

Read More...