1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00

Fix HMC5883 driver after Vinz' changes to PIOS_EXTI

This commit is contained in:
James Cotton 2012-09-28 01:10:46 -05:00
parent 5c13c31c08
commit 6add7cc4d2
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)
{
pios_hmc5883_data_ready = true
pios_hmc5883_data_ready = true;
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 uint8_t PIOS_HMC5883_ReadID(uint8_t out[4]);
extern int32_t PIOS_HMC5883_Test(void);
bool void PIOS_HMC5883_IRQHandler();
bool PIOS_HMC5883_IRQHandler();
#endif /* PIOS_HMC5883_H */
/**