mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-04 12:24:11 +01:00
7a66232be0
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1507 ebee16cc-31ac-478f-84a7-5cbb03baadba
16 lines
292 B
C
16 lines
292 B
C
/*
|
|
* flash_dfu.h
|
|
*
|
|
* Created on: 2010/08/31
|
|
* Author: Programacao
|
|
*/
|
|
|
|
#ifndef FLASH_DFU_H_
|
|
#define FLASH_DFU_H_
|
|
|
|
uint8_t FLASH_Ini();
|
|
uint8_t FLASH_Start(uint32_t size);
|
|
uint8_t *FLASH_If_Read(uint32_t SectorAddress, uint32_t DataLength);
|
|
|
|
#endif /* FLASH_DFU_H_ */
|