|
Can't compile Marlin on Windows 10 - typedef-name July 30, 2016 05:49PM |
Registered: 9 years ago Posts: 3 |
|
Re: Can't compile Marlin on Windows 10 - typedef-name August 01, 2016 10:15AM |
Registered: 9 years ago Posts: 3 |
|
Re: Can't compile Marlin on Windows 10 - typedef-name August 07, 2016 01:08PM |
Registered: 9 years ago Posts: 2 |
|
Re: Can't compile Marlin on Windows 10 - typedef-name September 13, 2016 10:07AM |
Registered: 10 years ago Posts: 29 |
|
Re: Can't compile Marlin on Windows 10 - typedef-name September 13, 2016 10:43AM |
Registered: 9 years ago Posts: 3 |
|
Re: Can't compile Marlin on Windows 10 - typedef-name September 13, 2016 04:12PM |
Registered: 11 years ago Posts: 4,977 |
/Marlin/Marlin/SdBaseFile.cpp:
301 }
302 //------------------------------------------------------------------------------
303: void SdBaseFile::getpos(filepos_t* pos) {
304 pos->position = curPosition_;
305 pos->cluster = curCluster_;
...
933 */
934 int SdBaseFile::peek() {
935: filepos_t pos;
936 getpos(&pos);
937 int c = read();
...
1488 }
1489 //------------------------------------------------------------------------------
1490: void SdBaseFile::setpos(filepos_t* pos) {
1491 curPosition_ = pos->position;
1492 curCluster_ = pos->cluster;
/Marlin/Marlin/SdBaseFile.h:
41 //------------------------------------------------------------------------------
42 /**
43: * \struct filepos_t
44 * \brief internal type for istream
45 * do not use in user apps
46 */
47: struct filepos_t {
48 /** stream position */
49 uint32_t position;
50 /** cluster for position */
51 uint32_t cluster;
52: filepos_t() : position(0), cluster(0) {}
53 };
54
..
206 * \param[out] pos struct to receive position
207 */
208: void getpos(filepos_t* pos);
209 /** set position for streams
210 * \param[out] pos struct with value for new position
211 */
212: void setpos(filepos_t* pos);
213 //----------------------------------------------------------------------------
214 bool close();
| Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
|
Re: Can't compile Marlin on Windows 10 - typedef-name September 14, 2016 02:45AM |
Registered: 10 years ago Posts: 29 |