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

24
source/hwFixes.h Normal file
View File

@@ -0,0 +1,24 @@
/*
* hwFixes.h
*
* Created on: Mar 27, 2024
* Author: Brian.Bailey
*/
#ifndef HWFIXES_H_
#define HWFIXES_H_
#define HWF_MIN_MAIN_PCBA_PN 208021 //Minimum PCBA part number
#define HWF_MAX_MAIN_PCBA_PN 208025 //Max PCBA part number - Increase this when changing hardware
typedef struct
{
bool vBattCap_021;
uint32_t mainPcbaPN;
}HARDWARE_FIX_t;
void HWF_Init(void);
#endif /* HWFIXES_H_ */