2025-01-15 11:01:26 +03:00
|
|
|
|
/**
|
|
|
|
|
**************************************************************************
|
2025-01-18 20:07:11 +03:00
|
|
|
|
* @file app_includes.h
|
|
|
|
|
* @brief Заголовочный файл для подключаения заголовочных файлов программы МК.
|
2025-01-15 11:01:26 +03:00
|
|
|
|
**************************************************************************/
|
|
|
|
|
#ifndef _APP_INCLUDES_H_
|
|
|
|
|
#define _APP_INCLUDES_H_
|
|
|
|
|
|
2025-01-19 23:05:29 +03:00
|
|
|
|
#include "app_configs.h"
|
2025-01-15 11:01:26 +03:00
|
|
|
|
// Includes
|
|
|
|
|
#include "DSP281x_Device.h"
|
2025-01-19 23:05:29 +03:00
|
|
|
|
#include "math.h"
|
|
|
|
|
#include "C28x_FPU_FastRTS.h"
|
2025-01-15 11:01:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "edrk_main.h"
|
|
|
|
|
#include "vector.h"
|
|
|
|
|
#include "vector_control.h"
|
|
|
|
|
#include "adc_tools.h"
|
|
|
|
|
#include "uf_alg_ing.h"
|
|
|
|
|
#include "v_rotor.h"
|
|
|
|
|
#include "v_pwm24_v2.h"
|
|
|
|
|
#include "control_station.h"
|
|
|
|
|
#include "control_station_project.h"
|
|
|
|
|
#include "CAN_Setup.h"
|
|
|
|
|
#include "RS_Functions.h"
|
|
|
|
|
#include "master_slave.h"
|
|
|
|
|
#include "xp_write_xpwm_time.h"
|
2025-01-15 13:39:33 +03:00
|
|
|
|
#include "global_time.h"
|
|
|
|
|
#include "PWMTools.h"
|
2025-01-16 13:10:11 +03:00
|
|
|
|
#include "alg_simple_scalar.h"
|
2025-01-23 15:34:55 +03:00
|
|
|
|
#include "can_bs2bs.h"
|
|
|
|
|
#include "log_to_mem.h"
|
|
|
|
|
#include "optical_bus.h"
|
|
|
|
|
#include "sync_tools.h"
|
|
|
|
|
#include "oscil_can.h"
|
|
|
|
|
#include "alarm_log_can.h"
|
2025-01-15 11:01:26 +03:00
|
|
|
|
|
|
|
|
|
#include <params.h>
|
|
|
|
|
#include <params_alg.h>
|
|
|
|
|
#include <params_norma.h>
|
|
|
|
|
#include <params_pwm24.h>
|
|
|
|
|
#include <params_temper_p.h>
|
|
|
|
|
#include <project.h>
|
|
|
|
|
|
|
|
|
|
#endif //_APP_INCLUDES_H_
|