25 lines
409 B
C
25 lines
409 B
C
|
|
/*
|
||
|
|
* 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_ */
|