This is one of my favorite renditions of the Pacman Nebula to date, and I think it is because of the untraditional framing of the target, and the color palette used. The Pacman Nebula (Narrowband). Radian 75 Petzval APO, ZWO ASI2600MM Pro. To create the image, I collected roughly 2 ...
The PacManChars struct could use bit fields to reduce memory usage since some fields don't need full bytes. typedef struct PacManChars {-uint16_t pos;-uint8_t size;-uint32_t color;+uint16_t pos; // Position needs full range+uint8_t size:4; // Size likely won't exceed 15+uint...