mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 01:11:10 +03:00
encodings: Added check for non-8bit encodings in src tree.
This commit sanitizes source files for unicode encodings which cause failures in downstream flows (docgen, python2 module loading, etc...). * Removed explicit encodings from src files * Replaced 2 byte character encodings with ascii encodies: ± -> +/- ° -> deg “ -> " etc... * Added ctest to check src tree files for non-8bit encodings Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
@ -59,8 +59,8 @@ namespace upm {
|
||||
*
|
||||
* @brief API for MCP9808 precision temprature sensor
|
||||
*
|
||||
* The MCP9808 digital temperature sensor converts temperatures between -20°C and +100°C
|
||||
* to a digital word with ±0.5°C (max.) accuracy. The MCP9808 comes with user-programmable
|
||||
* The MCP9808 digital temperature sensor converts temperatures between -20 deg C and +100 deg C
|
||||
* to a digital word with +/- 0.5 deg C (max.) accuracy. The MCP9808 comes with user-programmable
|
||||
* registers that provide flexibility for temperature sensing applications. The registers
|
||||
* allow user-selectable settings such as Shutdown or low-power modes and the specification
|
||||
* of temperature Event and Critical output boundaries. When the temperature changes beyond
|
||||
@ -133,10 +133,10 @@ namespace upm {
|
||||
* @var MCP9808_CONFIG::ALERTMODE - Alert Output Mode bit
|
||||
* 0 = Comparator output (power-up default)
|
||||
* 1 = Interrupt output
|
||||
* @var MCP9808_CONFIG::HYST_0 : 0°C
|
||||
* @var MCP9808_CONFIG::HYST_1_5 : +1.5°C
|
||||
* @var MCP9808_CONFIG::HYST_3_0 : +3.0°C
|
||||
* @var MCP9808_CONFIG::HYST_6_0 : +6.0°C
|
||||
* @var MCP9808_CONFIG::HYST_0 : 0 deg C
|
||||
* @var MCP9808_CONFIG::HYST_1_5 : +1.5 deg C
|
||||
* @var MCP9808_CONFIG::HYST_3_0 : +3.0 deg C
|
||||
* @var MCP9808_CONFIG::HYST_6_0 : +6.0 deg C
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
|
Reference in New Issue
Block a user