Skip to content

Commit

Permalink
Clean up W25QXXFlash class
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 29, 2021
1 parent a2a5340 commit ade9476
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 18 deletions.
4 changes: 0 additions & 4 deletions Marlin/src/gcode/control/M993_M994.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ void GcodeSuite::M993() {
return;
}

W25QXXFlash W25QXX;

uint8_t buf[1024];
uint32_t addr = 0;
W25QXX.init(SPI_QUARTER_SPEED);
Expand Down Expand Up @@ -71,8 +69,6 @@ void GcodeSuite::M994() {
return;
}

W25QXXFlash W25QXX;

uint8_t buf[1024];
uint32_t addr = 0;
W25QXX.init(SPI_QUARTER_SPEED);
Expand Down
2 changes: 0 additions & 2 deletions Marlin/src/lcd/extui/lib/mks_ui/SPIFlashStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
#include "../../../../inc/MarlinConfig.h"
#include "SPIFlashStorage.h"

extern W25QXXFlash W25QXX;

uint8_t SPIFlashStorage::m_pageData[SPI_FLASH_PageSize];
uint32_t SPIFlashStorage::m_currentPage;
uint16_t SPIFlashStorage::m_pageDataUsed;
Expand Down
1 change: 0 additions & 1 deletion Marlin/src/lcd/extui/lib/mks_ui/draw_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
#include "../../../../feature/pause.h"
#endif

W25QXXFlash W25QXX;
CFG_ITMES gCfgItems;
UI_CFG uiCfg;
DISP_STATE_STACK disp_state_stack;
Expand Down
2 changes: 0 additions & 2 deletions Marlin/src/lcd/extui/lib/mks_ui/pic_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,6 @@ extern void spi_flash_read_test();
extern void default_view_Read(uint8_t *default_view_Rbuff, uint32_t default_view_Readsize);
extern void flash_view_Read(uint8_t *flash_view_Rbuff, uint32_t flash_view_Readsize);

extern W25QXXFlash W25QXX;

#ifdef __cplusplus
} /* C-declarations for C++ */
#endif
3 changes: 2 additions & 1 deletion Marlin/src/libs/W25Qxx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@

#if HAS_SPI_FLASH

#include "W25Qxx.h"
#include <SPI.h>

#include "W25Qxx.h"
W25QXXFlash W25QXX;

#ifndef SPI_FLASH_MISO_PIN
#define SPI_FLASH_MISO_PIN W25QXX_MISO_PIN
Expand Down
10 changes: 2 additions & 8 deletions Marlin/src/libs/W25Qxx.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
Expand All @@ -21,10 +21,6 @@
*/
#pragma once

//#ifdef __cplusplus
//extern "C" { /* C-declarations for C++ */
//#endif

#include <stdint.h>

#define W25X_WriteEnable 0x06
Expand Down Expand Up @@ -71,6 +67,4 @@ class W25QXXFlash {
static void SPI_FLASH_BufferRead(uint8_t* pBuffer, uint32_t ReadAddr, uint16_t NumByteToRead);
};

//#ifdef __cplusplus
//} /* C-declarations for C++ */
//#endif
extern W25QXXFlash W25QXX;

0 comments on commit ade9476

Please sign in to comment.