Fixes an ISO-8859-1 vs UTF-8 issue

Files should be enconded with UTF-8, ISO-8859-1 and variants are
outdated.

This patch fixes an issue with the degree sign, which was coded
in ISO-8859-1 rather than UTF-8.
This commit is contained in:
Marcelo Roberto Jimenez
2018-02-17 11:00:56 -02:00
parent e985f2253a
commit 9138c60af7

6
Adafruit_Sensor.h Normal file → Executable file
View File

@ -72,9 +72,9 @@ typedef struct {
}; };
/* Orientation sensors */ /* Orientation sensors */
struct { struct {
float roll; /**< Rotation around the longitudinal axis (the plane body, 'X axis'). Roll is positive and increasing when moving downward. -90<EFBFBD><=roll<=90<EFBFBD> */ float roll; /**< Rotation around the longitudinal axis (the plane body, 'X axis'). Roll is positive and increasing when moving downward. -90°<=roll<=90° */
float pitch; /**< Rotation around the lateral axis (the wing span, 'Y axis'). Pitch is positive and increasing when moving upwards. -180<EFBFBD><=pitch<=180<EFBFBD>) */ float pitch; /**< Rotation around the lateral axis (the wing span, 'Y axis'). Pitch is positive and increasing when moving upwards. -180°<=pitch<=180°) */
float heading; /**< Angle between the longitudinal axis (the plane body) and magnetic north, measured clockwise when viewing from the top of the device. 0-359<EFBFBD> */ float heading; /**< Angle between the longitudinal axis (the plane body) and magnetic north, measured clockwise when viewing from the top of the device. 0-359° */
}; };
}; };
int8_t status; int8_t status;