Some unification of the headers

This commit is contained in:
Oleg Kalachev 2023-05-24 11:26:30 +03:00
parent 1125335b16
commit d6cca7dcf7
6 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,8 @@
// Copyright (c) 2023 Oleg Kalachev <okalachev@gmail.com>
// Repository: https://github.com/okalachev/flix
// Implementation of command line interface
#include "pid.h"
static String command;

View File

@ -1,6 +1,8 @@
// Copyright (c) 2023 Oleg Kalachev <okalachev@gmail.com>
// Repository: https://github.com/okalachev/flix
// Flight control
#pragma diag_suppress 144, 513
#include "pid.h"

View File

@ -1,6 +1,8 @@
// Copyright (c) 2023 Oleg Kalachev <okalachev@gmail.com>
// Repository: https://github.com/okalachev/flix
// Estimation of attitude from gyro and accelerometer
#include "quaternion.h"
#include "vector.h"

View File

@ -1,6 +1,8 @@
// Copyright (c) 2023 Oleg Kalachev <okalachev@gmail.com>
// Repository: https://github.com/okalachev/flix
// In-RAM logging
const int LOG_RATE = 100;
const int LOG_DURATION = 10;
const int LOG_PERIOD = 1000000 / LOG_RATE;

View File

@ -1,7 +1,8 @@
// Lightweight rotation quaternion library
// Copyright (c) 2023 Oleg Kalachev <okalachev@gmail.com>
// Repository: https://github.com/okalachev/flix
// Lightweight rotation quaternion library
#pragma once
#include "vector.h"

View File

@ -1,7 +1,8 @@
// Lightweight vector library
// Copyright (c) 2023 Oleg Kalachev <okalachev@gmail.com>
// Repository: https://github.com/okalachev/flix
// Lightweight vector library
#pragma once
class Vector : public Printable