stm32: standardize names for temp sensor calibrations

Instead of some parts using _30C and _110C and others using _30C and _110, use
the C suffix in all places to be consistent.
This commit is contained in:
Karl Palsson 2015-11-01 14:10:17 +00:00
parent a22d6a8315
commit b2e6e5c3b9
3 changed files with 3 additions and 3 deletions

View File

@ -111,6 +111,6 @@
/* ST provided factory calibration values @ 3.3V */
#define ST_VREFINT_CAL MMIO16(0x1FFFF7BA)
#define ST_TSENSE_CAL1_30C MMIO16(0x1FFFF7B8)
#define ST_TSENSE_CAL2_110 MMIO16(0x1FFFF7C2)
#define ST_TSENSE_CAL2_110C MMIO16(0x1FFFF7C2)
#endif

View File

@ -124,6 +124,6 @@
/* ST provided factory calibration values @ 3.3V */
#define ST_VREFINT_CAL MMIO16(0x1FFFF7BA)
#define ST_TSENSE_CAL1_30C MMIO16(0x1FFFF7B8)
#define ST_TSENSE_CAL2_110 MMIO16(0x1FFFF7C2)
#define ST_TSENSE_CAL2_110C MMIO16(0x1FFFF7C2)
#endif

View File

@ -152,6 +152,6 @@
/* ST provided factory calibration values @ 3.3V */
#define ST_VREFINT_CAL MMIO16(0x1FFF7A2A)
#define ST_TSENSE_CAL1_30C MMIO16(0x1FFF7A2C)
#define ST_TSENSE_CAL2_110 MMIO16(0x1FFF7A2E)
#define ST_TSENSE_CAL2_110C MMIO16(0x1FFF7A2E)
#endif