Moving headers into include/sls (#212)

This commit is contained in:
Erik Fröjdh
2020-11-02 16:05:28 +01:00
committed by GitHub
parent a57bbc084c
commit a15d8dd30a
199 changed files with 417 additions and 413 deletions

View File

@@ -1,6 +1,6 @@
#pragma once
#include "ansi.h"
#include "sls/ansi.h"
#include <stdarg.h>
#include <stdio.h>

View File

@@ -1,7 +1,7 @@
#ifndef COMMUNICATION_FUNCS_H
#define COMMUNICATION_FUNCS_H
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
typedef enum { INT16, INT32, INT64, OTHER } intType;

View File

@@ -1,5 +1,5 @@
#pragma once
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
void sharedMemory_print();
int sharedMemory_create(int port);

View File

@@ -1,5 +1,5 @@
#include "slsDetectorServer_defs.h" // DAC_INDEX, ADC_INDEX, also include RegisterDefs.h
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
#ifdef GOTTHARDD
#include "AD9252.h" // old board compatibility
#include "clogger.h" // runState(enum TLogLevel)

View File

@@ -1,6 +1,6 @@
#pragma once
#include "clogger.h"
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
enum numberMode { DEC, HEX };
#define GOODBYE (-200)