43 #ifndef SIGNATURE_SIGNATURE_HPP 44 #define SIGNATURE_SIGNATURE_HPP 57 uint8_t sig1, sig2, sig3;
60 static signature_t signature;
62 static bool INIT_STATUS;
75 static String getSignatureString();
86 return getSignatureString();
96 #ifdef FEATURE_RC_OSCILLATOR_CALIBRATION 102 static uint8_t getRcOscillatorCalibration() {
104 return Features::getRcOscillatorCalibration();
108 #ifdef FEATURE_INTERNAL_8MHZ_OSCILLATOR_CALIBRATION 115 static uint8_t getInternal8MHzOscillatorCalibration() {
117 return Features::getInternal8MHzOscillatorCalibration();
121 #ifdef FEATURE_OSCILLATOR_TEMPERATURE_CALIBRATION_A 128 static uint8_t getOscillatorTemperatureCalibrationA() {
130 return Features::getOscillatorTemperatureCalibrationA();
134 #ifdef FEATURE_OSCILLATOR_TEMPERATURE_CALIBRATION_B 140 static uint8_t getOscillatorTemperatureCalibrationB() {
142 return Features::getOscillatorTemperatureCalibrationB();
146 #ifdef FEATURE_INTERNAL_32KHZ_OSCILLATOR_CALIBRATION 153 static uint8_t getInternal32kHzOscillatorCalibration() {
155 return Features::getInternal32kHzOscillatorCalibration();
159 #ifdef FEATURE_TEMPERATURE_SENSOR_GAIN_CALIBRATION 165 static uint8_t getTemperatureSensorGainCalibration() {
167 return Features::getTemperatureSensorGainCalibration();
171 #ifdef FEATURE_TEMPERATURE_SENSOR_OFFSET_CALIBRATION 177 static uint8_t getTemperatureSensorOffsetCalibration() {
179 return Features::getTemperatureSensorOffsetCalibration();
193 #endif // SIGNATURE_SIGNATURE_HPP static String getSignature()
Get the signature as a string.
Definition: Signature.hpp:84
static String getChipName()
Get the name of the chip.
Definition: Signature.cpp:100
static String getSummary()
Writing a summary of the signature of the chip into a string. Usefully for giving information about t...
Definition: Signature.cpp:87
Class representing the signature of the microcontroller.
Definition: Signature.hpp:53