1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-29 14:52:12 +01:00

Merge branch 'revo' into rm2

This commit is contained in:
James Cotton 2012-10-02 02:50:34 -05:00
commit 05ea584341
2 changed files with 2 additions and 2 deletions

View File

@ -393,7 +393,7 @@ int32_t PIOS_HMC5883_Test(void)
*/ */
bool PIOS_HMC5883_IRQHandler(void) bool PIOS_HMC5883_IRQHandler(void)
{ {
pios_hmc5883_data_ready = true pios_hmc5883_data_ready = true;
return false; return false;
} }

View File

@ -107,7 +107,7 @@ extern bool PIOS_HMC5883_NewDataAvailable(void);
extern int32_t PIOS_HMC5883_ReadMag(int16_t out[3]); extern int32_t PIOS_HMC5883_ReadMag(int16_t out[3]);
extern uint8_t PIOS_HMC5883_ReadID(uint8_t out[4]); extern uint8_t PIOS_HMC5883_ReadID(uint8_t out[4]);
extern int32_t PIOS_HMC5883_Test(void); extern int32_t PIOS_HMC5883_Test(void);
bool void PIOS_HMC5883_IRQHandler(); bool PIOS_HMC5883_IRQHandler();
#endif /* PIOS_HMC5883_H */ #endif /* PIOS_HMC5883_H */
/** /**