CalgaryToSpace / CTS-SAT-1-OBC-Firmware

Firmware for the CTS-SAT-1 ("FrontierSat") mission. Runs on the STM32-based Onboard Computer.
MIT License
2 stars 0 forks source link

Telecommand: Send configuration commands to MPI #32

Open DeflateAwning opened 4 weeks ago

DeflateAwning commented 4 weeks ago

Potential Example Commands

// HV_INNER_DOME_SCAN_MODE set to sawtooth:
CTS1+mpi_send_command_hex(0204)!

// AGC_DISABLE (command 10 in decimal)
CTS1+mpi_send_command_hex(0A)

// AGC_SET_PIXEL_RANGE (command 22 = 0x16), each part set to the value "1"
CTS1+mpi_send_command_hex(1600010001)

// Could maybe support optional underscores between parts to make it more readable. Eg:
CTS1+mpi_send_command_hex(16_0001_0001)