From d383f2bcdb6ff13cc562fce1ff55d826035debad Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Mon, 6 Mar 2023 17:36:31 +0100 Subject: Simplify source tree Now just use make in the root directory to build. --- AT91SAM7S256/Source/c_input.h | 67 ------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 AT91SAM7S256/Source/c_input.h (limited to 'AT91SAM7S256/Source/c_input.h') diff --git a/AT91SAM7S256/Source/c_input.h b/AT91SAM7S256/Source/c_input.h deleted file mode 100644 index 4e508f3..0000000 --- a/AT91SAM7S256/Source/c_input.h +++ /dev/null @@ -1,67 +0,0 @@ -// -// Date init 14.12.2004 -// -// Revision date $Date:: 14-01-09 10:33 $ -// -// Filename $Workfile:: c_input.h $ -// -// Version $Revision:: 7 $ -// -// Archive $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/c_inpu $ -// -// Platform C -// - -#ifndef C_INPUT -#define C_INPUT - -#ifdef INCLUDE_OS -extern const HEADER cInput; -#endif - -#include "c_input.iom" - -#define ACTUAL_AD_RES 1023L -#define SENSOR_RESOLUTION 1023L -#define DEBOUNCERELOAD 100 -#define THRESHOLD_FALSE (UWORD)(ACTUAL_AD_RES * 45L / 100L) -#define THRESHOLD_TRUE (UWORD)(ACTUAL_AD_RES * 55L / 100L) - -#define ANGLELIMITA (UWORD)(ACTUAL_AD_RES * 4400L / 10000L) -#define ANGLELIMITB (UWORD)(ACTUAL_AD_RES * 6600L / 10000L) -#define ANGLELIMITC (UWORD)(ACTUAL_AD_RES * 8900L / 10000L) - -#define FWDDIR 1 -#define RWDDIR 2 -#define MAXSAMPLECNT 5 - -typedef struct -{ - UBYTE ColorInputDebounce [NO_OF_COLORS]; - UBYTE ColorEdgeCnt [NO_OF_COLORS]; - UBYTE ColorLastAngle [NO_OF_COLORS]; - UBYTE ColorSampleCnt [NO_OF_COLORS]; - UBYTE ColorInitState; - UBYTE ReadCnt; -} VARSCOLOR; - - -typedef struct -{ - UWORD InvalidTimer [NO_OF_INPUTS]; - UBYTE InputDebounce [NO_OF_INPUTS]; - UBYTE EdgeCnt [NO_OF_INPUTS]; - UBYTE LastAngle [NO_OF_INPUTS]; - UBYTE OldSensorType [NO_OF_INPUTS]; - UBYTE SampleCnt [NO_OF_INPUTS]; - VARSCOLOR VarsColor [NO_OF_INPUTS]; - UBYTE ColorCnt; - UBYTE ColorStatus; -}VARSINPUT; - -void cInputInit(void* pHeader); -void cInputCtrl(void); -void cInputExit(void); - - -#endif -- cgit v1.2.3