Kubos Mission Development

This section of the documentation walks through the necessary steps to get a satellite running KubOS from project initiation to flight ready. This only covers the software development and preparation of the system as it pertains to KubOS, and does not cover hardware testing, power/thermal design and profiling, or any other mission development aspects that aren’t software. The following steps don’t have to be done precisely in this order, but this is generally expected to be the optimal order.

1. Hardware Integrations

Although there is already quite a bit of supported hardware in KubOS, your mission might have some hardware that is not yet supported, or unique to your mission (such as a payload). Hardware services must be developed for any hardware that is not already supported.

Radio Integrations

Radios have an additional step that’s required to finish integrating them into the system. The hardware service only exposes the commands and telemetry for the radio hardware, but does not expose the uplink or downlink interface(s). To expose their downlink and uplink capability to the rest of the system, we provide a communication service framework.

2. Payload Integration(s)

Besides avionics hardware, you likely have a payload you want to integrate for your mission. KubOS provides a payload service guide for integrating payloads into KubOS in the recommended way:

We recommend all payload services follow this guide in order to keep system component interoperability simple and organized. However, there is no hard requirement forcing payloads to conform to our specifications. We want users to retain complete control over their systems and understand there may be cases where following our architecture isn’t the best option. For example, there might be a payload device which requires a lower latency than our communication flow provides. In this case, it would be better for the appropriate mission application to be able to directly communicate with the device, rather than via a payload service.

3. Mission Applications

In KubOS, services are used primarily to expose functionality of underlying hardware. They should be expected to only perform a minimal amount of decision-making (for example, kicking a watchdog at a pre-defined interval). Instead, we rely on mission applications to handle the decision making for the mission. Kubos has some mission applications that are open sourced in the repo, and others that we can offer to aid in mission development. We’ve listed the typical necessary applications:

4. Update and Recovery

KubOS uses similar procedures for both updating and recovering the operating system. We highly recommend familiarizing yourself with both procedures during development, well before launch.

Updating KubOS

The process for updating the operating system can be reviewed here: KubOS update process. The process for updating mission applications can be reviewed here: application service guide. Both should be reviewed and tested on your hardware prior to launch.

Kubos offers SLAs to aid in this process.

Recovery in KubOS

The KubOS recovery process is defaulted to be configured for a development environment, where you have access to the hardware and are actively developing on it. As a result, it requires augmentation before being flight ready, as it is not initially configured for desired on-orbit behavior. The augmentation will likely be limited to changing the alternate boot behavior in the event of multiple failed boots.

Before you finish development, we recommend studying the recovery process and augmenting it as necessary to cover any possible edge cases that your hardware or software might encounter. In addition, we also recommend doing several test cycles forcing the recovery to take place under various conditions, verifying that your mission specific code is effectively integrated into the recovery process.

Kubos offers SLAs to aid in the augmentation of the process and/or auditing your mission’s recovery process.

5. Flight Readiness

You have all the hardware integrated, you have all the required mission applications, and you’ve tested everything to your heart’s content…you’re ready for launch. We’ve created a checklist for the likely steps to the prepare the software to be launch-ready:

Please note that this is only a recommended list of steps, and will definitely change depending on your launch provider, mission requirements, and hardware configuration.