1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

OP-782 move FirmwareIAPStart from firmwareiap.h to matching .c file.

This commit is contained in:
Alessio Morale 2012-12-30 12:32:00 +01:00
parent 657701348c
commit b1360f8136
2 changed files with 6 additions and 1 deletions

View File

@ -108,6 +108,11 @@ int32_t FirmwareIAPInitialize()
return 0;
}
int32_t FirmwareIAPStart()
{
return 0;
}
/*!
* \brief FirmwareIAPCallback - callback function for firmware IAP requests
* \param[in] ev - pointer objevent

View File

@ -27,7 +27,7 @@
#define FIRMWAREIAP_H
int32_t FirmwareIAPInitialize();
int32_t FirmwareIAPStart() {return 0;};
int32_t FirmwareIAPStart();
#endif // FIRMWAREIAP_H