Arduino Signature Library  2.0.1
Retrieving signature information from avr microprocessors
Signature.hpp
Go to the documentation of this file.
1 
43 #ifndef SIGNATURE_SIGNATURE_HPP
44 #define SIGNATURE_SIGNATURE_HPP
45 
46 #include "Features.hpp"
47 
48 #include <WString.h>
49 
53 class Signature {
54 private:
56  typedef struct {
57  uint8_t sig1, sig2, sig3;
58  } signature_t;
59 
60  static signature_t signature;
61 
62  static bool INIT_STATUS;
63 
67  static void INIT();
68 
75  static String getSignatureString();
76 
77 public:
84  static String getSignature() {
85  INIT();
86  return getSignatureString();
87  }
88 
94  static String getChipName();
95 
96 #ifdef FEATURE_RC_OSCILLATOR_CALIBRATION
97 
102  static uint8_t getRcOscillatorCalibration() {
103  INIT();
104  return Features::getRcOscillatorCalibration();
105  }
106 #endif
107 
108 #ifdef FEATURE_INTERNAL_8MHZ_OSCILLATOR_CALIBRATION
109 
115  static uint8_t getInternal8MHzOscillatorCalibration() {
116  INIT();
117  return Features::getInternal8MHzOscillatorCalibration();
118  }
119 #endif
120 
121 #ifdef FEATURE_OSCILLATOR_TEMPERATURE_CALIBRATION_A
122 
128  static uint8_t getOscillatorTemperatureCalibrationA() {
129  INIT();
130  return Features::getOscillatorTemperatureCalibrationA();
131  }
132 #endif
133 
134 #ifdef FEATURE_OSCILLATOR_TEMPERATURE_CALIBRATION_B
135 
140  static uint8_t getOscillatorTemperatureCalibrationB() {
141  INIT();
142  return Features::getOscillatorTemperatureCalibrationB();
143  }
144 #endif
145 
146 #ifdef FEATURE_INTERNAL_32KHZ_OSCILLATOR_CALIBRATION
147 
153  static uint8_t getInternal32kHzOscillatorCalibration() {
154  INIT();
155  return Features::getInternal32kHzOscillatorCalibration();
156  }
157 #endif
158 
159 #ifdef FEATURE_TEMPERATURE_SENSOR_GAIN_CALIBRATION
160 
165  static uint8_t getTemperatureSensorGainCalibration() {
166  INIT();
167  return Features::getTemperatureSensorGainCalibration();
168  }
169 #endif
170 
171 #ifdef FEATURE_TEMPERATURE_SENSOR_OFFSET_CALIBRATION
172 
177  static uint8_t getTemperatureSensorOffsetCalibration() {
178  INIT();
179  return Features::getTemperatureSensorOffsetCalibration();
180  }
181 #endif
182 
190  static String getSummary();
191 };
192 
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