Siphon Regulator 1.0
Nanosattelite attitude determination and control system.
Loading...
Searching...
No Matches
cmd_processing.h
Go to the documentation of this file.
1/*
2 * Command processing library
3 * (c) Antonin_Putala 2026
4 *
5 * Developed using STM32CubeIDE
6 * Tested on BluePill board and STM32F103C8T6, 32 MHz.
7 */
8
24#ifndef __CMD_PROCESSING_H
25#define __CMD_PROCESSING_H
26
27/* Includes -----------------------------------------------*/
28#include "main.h"
29
30/* Defines ------------------------------------------------*/
31//#define CMD_BUFFER_LEN 256
32
33/* Extern global variables --------------------------------*/
35extern settings_t set_data;
36
37/* Function prototypes ------------------------------------*/
67void uart_byte_available(uint8_t c, uint32_t * p_reg);
68
70#endif /* __CMD_PROCCESING_H */
settings_t set_data
Main system settings.
Definition main.c:61
sensor_data_t measured_data
Current sensor measured data.
Definition main.c:60
void uart_byte_available(uint8_t c, uint32_t *p_reg)
Recognizes commands in the received characters and sets the cmd register accordingly.
: Header for main.c file. This file contains the common defines of the application.