浏览代码

Use constexpr constructor for SerialFlashFile

main
PaulStoffregen 7 年前
父节点
当前提交
594d389fde
共有 1 个文件被更改,包括 5 次插入6 次删除
  1. +5
    -6
      SerialFlash.h

+ 5
- 6
SerialFlash.h 查看文件

@@ -76,8 +76,7 @@ extern SerialFlashChip SerialFlash;
class SerialFlashFile
{
public:
SerialFlashFile() : address(0) {
}
constexpr SerialFlashFile() { }
operator bool() {
if (address > 0) return true;
return false;
@@ -123,10 +122,10 @@ public:
}
protected:
friend class SerialFlashChip;
uint32_t address; // where this file's data begins in the Flash, or zero
uint32_t length; // total length of the data in the Flash chip
uint32_t offset; // current read/write offset in the file
uint16_t dirindex;
uint32_t address = 0; // where this file's data begins in the Flash, or zero
uint32_t length = 0; // total length of the data in the Flash chip
uint32_t offset = 0; // current read/write offset in the file
uint16_t dirindex = 0;
};



正在加载...
取消
保存