8000 Code cleanup by fabianoms · Pull Request #4509 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Code cleanup #4509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update flash_utils.h
  • Loading branch information
fabianoms authored Mar 20, 2018
commit 93a18810757739f44eaa7d4885889cf3689671d2
5 changes: 3 additions & 2 deletions cores/esp8266/flash_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
#ifndef FLASH_UTILS_H
#define FLASH_UTILS_H

#include "c_types.h"
#include "spi_flash.h"

#ifdef __cplusplus
extern "C" {
#endif

#include "spi_flash.h"

int SPIEraseBlock(uint32_t block);
int SPIEraseSector(uint32_t sector);
int SPIRead(uint32_t addr, void *dest, size_t size);
Expand Down
0