1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-16 21:05:26 +03:00

Silence CLangs warnings so -DWARNING_AS_ERROR does not break the build under OS X

This commit is contained in:
Arne Schwabe 2017-12-30 11:16:35 +01:00
parent 96d9ae4776
commit 7f1dea6129
2 changed files with 10 additions and 2 deletions

View file

@ -21,7 +21,10 @@
#ifndef _DEFINITIONS_H_
#define _DEFINITIONS_H_
#if defined(SIMU)
#if defined(SIMU) && __GNUC__
#define __ALIGNED __attribute__((aligned(32)))
#define __SECTION_USED(s) __attribute__((used))
#elif defined(SIMU)
#define __ALIGNED
#define __SECTION_USED(s)
#else

View file

@ -138,6 +138,11 @@ void extractLatitudeLongitude(uint32_t * latitude, uint32_t * longitude)
*longitude = ((uint32_t)(qr.quot) * 1000000) + (((uint32_t)(qr.rem) * 10000 + telemetryData.hub.gpsLongitude_ap) * 5) / 3;
}
#if __clang__
// clang does not like packed member access at all. Since mavlink is a 3rd party library, ignore the errors
#pragma clang diagnostic push
#pragma clang diagnostic warning "-Waddress-of-packed-member"
#endif
void getGpsPilotPosition()
{
extractLatitudeLongitude(&telemetryData.hub.pilotLatitude, &telemetryData.hub.pilotLongitude);