96 lines
2.2 KiB
C++
96 lines
2.2 KiB
C++
/*
|
|
* @file global.h
|
|
*
|
|
* Global header file for unit tests
|
|
*
|
|
* @date Nov 28, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef GLOBAL_H_
|
|
#define GLOBAL_H_
|
|
|
|
#define DEFAULT_ENGINE_TYPE CUSTOM_ENGINE
|
|
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
#include "common_headers.h"
|
|
|
|
#include "boards.h"
|
|
|
|
#ifdef __cplusplus
|
|
// todo: include it right here? #include "unit_test_framework.h"
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
#define CH_FREQUENCY 1000
|
|
|
|
typedef int bool_t;
|
|
typedef uint32_t systime_t;
|
|
|
|
void chDbgAssert(int c, char *msg, void *arg);
|
|
|
|
void print(const char *fmt, ...);
|
|
|
|
#define TICKS_IN_MS 100
|
|
|
|
#define chDbgCheck(x, y) chDbgAssert(x, y, NULL)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#define US_TO_NT_MULTIPLIER 100
|
|
|
|
#define ALWAYS_INLINE INLINE
|
|
|
|
#define US2NT(x) (US_TO_NT_MULTIPLIER * (x))
|
|
|
|
#define NT2US(x) ((x) / US_TO_NT_MULTIPLIER)
|
|
|
|
#define INLINE inline
|
|
|
|
#define EFI_ERROR_CODE 0xffffffff
|
|
|
|
#define CCM_OPTIONAL
|
|
|
|
#define EXTERN_ENGINE extern EnginePins enginePins
|
|
|
|
#ifdef __cplusplus
|
|
class Engine;
|
|
#endif /* __cplusplus */
|
|
|
|
/**
|
|
* @see firmware/global.h for explanation
|
|
*/
|
|
#define DECLARE_ENGINE_PARAMETER_SIGNATURE Engine *engine, engine_configuration_s *engineConfiguration, persistent_config_s *config, board_configuration_s *boardConfiguration
|
|
#define DECLARE_ENGINE_PARAMETER_SUFFIX , Engine *engine, engine_configuration_s *engineConfiguration, persistent_config_s *config, board_configuration_s *boardConfiguration
|
|
#define PASS_ENGINE_PARAMETER_SIGNATURE engine, engineConfiguration, config, boardConfiguration
|
|
#define PASS_ENGINE_PARAMETER_SUFFIX , engine, engineConfiguration, config, boardConfiguration
|
|
|
|
|
|
/**
|
|
* this macro is a work-around for uint tests to get all needed pointers only
|
|
* if engine is in scope
|
|
*/
|
|
#define EXPAND_Engine \
|
|
engine_configuration_s *engineConfiguration = engine->engineConfiguration; \
|
|
persistent_config_s *config = engine->config; \
|
|
board_configuration_s *boardConfiguration = &engineConfiguration->bc;
|
|
|
|
|
|
/**
|
|
* this macro provides references to engine from EngineTestHelper
|
|
*/
|
|
#define EXPAND_EngineTestHelper \
|
|
Engine *engine = ð.engine; \
|
|
EXPAND_Engine
|
|
|
|
#define CONFIG(x) engineConfiguration->x
|
|
#define ENGINE(x) engine->x
|
|
|
|
#endif /* GLOBAL_H_ */
|