initial check in based on SVN revision 575

This commit is contained in:
2025-05-14 12:57:39 -05:00
commit a3ef12e24a
217 changed files with 95547 additions and 0 deletions

20
source/amps.h Normal file
View File

@@ -0,0 +1,20 @@
/*
* amps.h
*
* Created on: Mar 6, 2023
* Author: Keith.Lloyd
*/
#ifndef AMPS_H_
#define AMPS_H_
#define MAX_DTYPE 44500
#define MAX_LOW_FRQ 83078
#define AMP_D_SW 0b00000010 //AMPD_ON U13 D1
#define AMP_AB_SW 0b00000001 // AMPAB_ON U13 D0 ACTIVE LOW
void Enable_Amplifier(void);
void All_Amps_Off(void); // shut down Amplifiers DC connections
void Check_Pot_Val(void);
#endif /* AMPS_H_ */