diff options
author | Ben V. Brown <[email protected]> | 2021-02-02 19:53:19 +1100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-02 19:53:19 +1100 |
commit | 1f6a3ad16728992d50e8992317ebf83edc8bafab (patch) | |
tree | fc553682c664d51bb4557981a8810ee5ff0b6889 /source/Core/BSP/BSP.h | |
parent | 15e51f9faa5899ac27d2c065bcecbc9b73f87f90 (diff) | |
download | IronOS-1f6a3ad16728992d50e8992317ebf83edc8bafab.tar.gz IronOS-1f6a3ad16728992d50e8992317ebf83edc8bafab.zip |
Pinecil uart (#830)
* Creating uart debug handler
* Simpler get raw uV tip
* Update Setup.cpp
* Debug out working. Moved Logo
Need to update docs around logos before merging this in
* Add in current pwm level + fix signed int
* Update moving logo page for pinecil by 64k
* Update TipThermoModel.h
Diffstat (limited to 'source/Core/BSP/BSP.h')
-rw-r--r-- | source/Core/BSP/BSP.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/Core/BSP/BSP.h b/source/Core/BSP/BSP.h index eb54ead0..08ead36a 100644 --- a/source/Core/BSP/BSP.h +++ b/source/Core/BSP/BSP.h @@ -71,6 +71,9 @@ int16_t getRawHallEffect(); // Returns true if power is from dumb "DC" input rather than "smart" QC or PD
bool getIsPoweredByDCIN();
+// Logs the system state to a debug interface if supported
+void log_system_state(int32_t PWMWattsx10);
+
#ifdef __cplusplus
}
#endif
|