Palmito replied to the topic 'New to Astroberry and weird problem' in the forum. 4 years ago

Yes I would have thought the same. But maybe not.

Considering your pixel count I doubt, but I could be wrong, it will be useful for your case, but with the ASI6200 I had to increase allowed memory for INDI drivers.

On astroberry I edited:

/var/www/indiwebmanager/indi_server.py

and increased memory to 168MB (default was 100):
def __run(self, port):
        cmd = 'indiserver -p %d -m 160 -v -f %s > /tmp/indiserver.log 2>&1 &' % \
            (port, self.__fifo)
        logging.info(cmd)
        call(cmd, shell=True)


Read More...