Skip to content

Commit

Permalink
Remove unused declaration in STM32 flash driver (#1608)
Browse files Browse the repository at this point in the history
***NO_CI***
  • Loading branch information
josesimoes authored Apr 23, 2020
1 parent 136a95e commit ccd062f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ extern "C" {
int flash_lld_write(uint32_t startAddress, uint32_t length, const uint8_t* buffer);
int flash_lld_isErased(uint32_t startAddress, uint32_t length);
int flash_lld_erase(uint32_t address);
uint8_t flash_lld_getSector(uint32_t address);

#ifdef __cplusplus
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,5 @@ int stm32FlashErase(uint32_t address) {
return flash_lld_erase(address);
}

uint8_t stm32FlashGetSector(uint32_t address) {
return flash_lld_getSector(address);
}


#endif

0 comments on commit ccd062f

Please sign in to comment.