AP_HAL: rename Sempahore.h to Semaphores.h

this is needed to allow build on MacOS, as its case-insensitive
filesystem picks up the NuttX semaphore.h
This commit is contained in:
Andrew Tridgell 2013-01-02 18:22:07 +11:00
parent 55e6544e64
commit a3c26d44e4
11 changed files with 8 additions and 8 deletions

View File

@ -19,7 +19,7 @@
#include "RCInput.h"
#include "RCOutput.h"
#include "Scheduler.h"
#include "Semaphore.h"
#include "Semaphores.h"
#include "Util.h"
#include "utility/Print.h"

View File

@ -6,7 +6,7 @@
#include <AP_HAL.h>
#include "SPIDevices.h"
#include "GPIO.h"
#include "Semaphore.h"
#include "Semaphores.h"
#include "pins_arduino_mega.h"
using namespace AP_HAL_AVR;

View File

@ -6,7 +6,7 @@
#include <AP_HAL.h>
#include "SPIDevices.h"
#include "GPIO.h"
#include "Semaphore.h"
#include "Semaphores.h"
#include "pins_arduino_mega.h"
using namespace AP_HAL_AVR;

View File

@ -6,7 +6,7 @@
#include "AP_HAL_AVR_Namespace.h"
#include "GPIO.h"
#include "SPIDevices.h"
#include "Semaphore.h"
#include "Semaphores.h"
class AP_HAL_AVR::APM1SPIDeviceManager : public AP_HAL::SPIDeviceManager {
public:

View File

@ -2,7 +2,7 @@
#include <AP_HAL.h>
#include <AP_HAL_AVR.h>
#include "Semaphore.h"
#include "Semaphores.h"
using namespace AP_HAL_AVR;
extern const AP_HAL::HAL& hal;

View File

@ -15,7 +15,7 @@
#include "GPIO.h"
#include "RCInput.h"
#include "RCOutput.h"
#include "Semaphore.h"
#include "Semaphores.h"
#include "Scheduler.h"
#include "Util.h"
#include "PrivateMember.h"

View File

@ -3,7 +3,7 @@
#define __AP_HAL_EMPTY_SPIDRIVER_H__
#include <AP_HAL_Empty.h>
#include "Semaphore.h"
#include "Semaphores.h"
class Empty::EmptySPIDeviceDriver : public AP_HAL::SPIDeviceDriver {
public:

View File

@ -1,5 +1,5 @@
#include "Semaphore.h"
#include "Semaphores.h"
using namespace Empty;