bringing std types together
This commit is contained in:
parent
372ba45bed
commit
d81185ac28
|
@ -15,8 +15,6 @@
|
||||||
#include "tunerstudio_configuration.h"
|
#include "tunerstudio_configuration.h"
|
||||||
#include "engine.h"
|
#include "engine.h"
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int queryCommandCounter;
|
int queryCommandCounter;
|
||||||
int outputChannelsCommandCounter;
|
int outputChannelsCommandCounter;
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdbool.h>
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include <chprintf.h>
|
#include <chprintf.h>
|
||||||
#include "eficonsole.h"
|
#include "eficonsole.h"
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
#ifndef CONTROLLERS_ALGO_RUSEFI_TYPES_H_
|
#ifndef CONTROLLERS_ALGO_RUSEFI_TYPES_H_
|
||||||
#define CONTROLLERS_ALGO_RUSEFI_TYPES_H_
|
#define CONTROLLERS_ALGO_RUSEFI_TYPES_H_
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#if defined __GNUC__
|
#if defined __GNUC__
|
||||||
// GCC
|
// GCC
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
#include "efifeatures.h"
|
#include "efifeatures.h"
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "error_handling.h"
|
#include "error_handling.h"
|
||||||
|
|
|
@ -15,7 +15,6 @@ extern "C"
|
||||||
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "obd_error_codes.h"
|
#include "obd_error_codes.h"
|
||||||
#include "stdbool.h"
|
|
||||||
#include "rusefi_types.h"
|
#include "rusefi_types.h"
|
||||||
|
|
||||||
void addWarningCode(obd_code_e code);
|
void addWarningCode(obd_code_e code);
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
#define FLASH_H
|
#define FLASH_H
|
||||||
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Number of sectors in the flash memory.
|
* @brief Number of sectors in the flash memory.
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "cli_registry.h"
|
#include "cli_registry.h"
|
||||||
#include "efilib.h"
|
#include "efilib.h"
|
||||||
|
|
|
@ -30,7 +30,6 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
|
|
||||||
#if ! EFI_UNIT_TEST || defined(__DOXYGEN__)
|
#if ! EFI_UNIT_TEST || defined(__DOXYGEN__)
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
#ifndef EFILIB2_H_
|
#ifndef EFILIB2_H_
|
||||||
#define EFILIB2_H_
|
#define EFILIB2_H_
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
|
|
||||||
#define DEFAULT_ENGINE_TYPE CUSTOM_ENGINE
|
#define DEFAULT_ENGINE_TYPE CUSTOM_ENGINE
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue