changed #elif to #else, to build on all targets

This commit is contained in:
dino 2019-10-10 17:09:18 +02:00 committed by David Sidrane
parent 3c77ef7eb3
commit 528dc41822
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ uint32_t px4_arch_adc_temp_sensor_mask()
{
#ifdef ADC_INTERNAL_TEMP_SENSOR_CHANNEL
return 1 << ADC_INTERNAL_TEMP_SENSOR_CHANNEL;
#elif
#else
return 1 << 16;
#endif
}