mils24

About

Username
mils24
Joined
Visits
62
Last Active
Roles
Member

Comments

  • Yea for some reason SDSS 4   SPI_PIN 77 and SPI_CHAN 0 works.  I wonder what would happen if I changed SDSS to 10 in ui.h and also SDSS to 10 in pins.h? To me it seemed like the difference of having SDSS as 10 in ui.h and SDSS as 4 in pins.h was th…
  • - SOLUTION - I finally got it working!!!!!  Currently running a 3 hour test print to ensure it does not drop out in the middle of a print but so far all is looking good! So the solution: After my last test of creating a brand new configuration…
  • Hello Repetier. Thanks for the reply. I have done what you have said tonight with the online configuration tool. I created a new one with just the control board and the LCD display configured. I left everything else standard. I compiled and flashed…
  • Hello guys, I have read post after post about this issue and no one can seem to get to the bottom of it. I really want to get this working again as I do not want to have to leave my laptop plugged into my printer while its printing.Repetier seems to…
  • Repetier said: Due is critical with spi - you should only use one spi device at the moment with hardware spi. Do you have anything else spi related configured - thermistor maybe?  Can anyone please explain what Repetier meant by the above…
  • Thanks MatrinH, Ive tried mounting it and on Repetier Host it says  < 17:16:42: SD init fail< 17:16:42: Begin file list< 17:16:42: End file list Ive tried it several time and each time I get the same response. One of the times when I pr…
  • Can someone please point me to instruction on how to mount the SD card as Repetier mentioned above? I will test this later tonight or tomorrow. Or if anyone else's has anything else I can try??
  • What do you mean by 'spi'. Sorry my knowledge of coding is not great. Im learning as I go.I did have to move to the 0.92.9 firmware to suit my new hotend thermistor. Its type 14. Also how do you mean mount the SD?
  • Ok, So the 'Back' Issue is now solved and my compiling and flashing is definitely working! So back to the 'SD init fail' it is still a mystery and not working. It may also be worth noting that on my old firmware that as soon as inserted the SD card…
  • Ok so I changed the name that appears on my LCD and refreshed and it did work. So my compiling and flashing is working ok.  Therefore my SD init fail and missing 'back' button problems are still unsolved!
  • Ive set both to 150 and re uploaded without no success. code looked like the following: HAL::pingWatchdog();HAL::delayMilliseconds(150); // wait for stabilization of contacts, bootup ...    fat.begin(SDSS, SPI_SIXTEENTH_SPEED);  // dummy init of S…
  • I have made the changes as described to (SDSS, SPI_SIXTEENTH_SPEED) and Im still getting the 'SD init fail' error.
  • I can't see the string of code you are talking about above.  Please see my old and new initsd code from SDCard.cpp below: - OLD firmware that works - void SDCard::initsd(){    sdactive = false;#if SDSS >- 1#if SDCARDDETECT>-1    if(READ(SDC…
  • I have just refreshed the old firmware from 2014 and it worked fine. No SD card errors.  I then re flashed my new 0.92.9 firmware and the SD init fail error is still there. I am only using the SD card slot on the LCD screen. Not the one on the boa…
  • So I finally got it working, thanks to another forum user on a different forum. Turns out that my problem was that the M82 command was after the G92 E0. Once I swapped the both of them around it worked like a dream. Final code was as follows: M30…