Firmware

Is this the firmware that comes pre-loaded when you purchase the bundle? https://www.v1engineering.com/wp-content/uploads/2015/12/B16_32_fullG-112515.zip

I need to make some changes to it, but want to make sure this is the original so I have a copy to revert back to if needed.

Thanks

Yup that is the one.

Hi, Ryan and friends. I am building my first MPCNC machine here in Brazil and almost everything in the software and electonics stuff are new for me. So I am doing very slow trying to understand and learn at same time. I need some help from you on the firmware from Marlin. I have downloaded the files you indicated in the site including the file above mentioned by RAGII. But my doubts are:

  1. What are the exact parameters that I need to upload in the Arduino board knowing that I will use the machine to cut foam with niddle fly wheel. At this first attempt, I will not use the machine as a 3D printer.
  2. Is the procedure just this? Just copy the parameters and save them on the Arduino board?
  3. What are the first running tests I need to do?
  4. Could you suggest some videos or posts in this forum that could help me?

Thanks a lot for your attention and support.

Silvio -

https://www.v1engineering.com/marlin-firmware/

1)If you upload that file to your arduino you do not have to change anything.

2)install the arduino saftware. Double click on my file, It will open arduino. Set the right board, Mega 2560, the right com port hit upload.

3)good test file, https://www.v1engineering.com/estlcam-basics/

4)let me know if you need more help. This is all standard stuff google can also be useful, none of this is specific to the mpcnc except my preconfigured marlin.

Hi, keymaster. Excuse me but I have a couple of questions in addition to the prior post I sent you yesterday.

  1. When I launch my Arduino I see the attached print screen info. Also the following parameters:
    /**

/* All the implementation is done in *.cpp files to get better compatibility with avr-gcc without the Arduino IDE /
/
Use this file to help the Arduino IDE find which Arduino libraries are needed and to keep documentation on GCode */

#include “Configuration.h”
#include “pins.h”

#if ENABLED(ULTRA_LCD)
#if ENABLED(LCD_I2C_TYPE_PCF8575)
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#elif ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)
#include <Wire.h>
#include <LiquidTWI2.h>
#elif ENABLED(LCM1602)
#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
#elif ENABLED(DOGLCD)
#include <U8glib.h> // library for graphics LCD by Oli Kraus (https://github.com/olikraus/U8glib_Arduino)
#else
#include <LiquidCrystal.h> // library for character LCD
#endif
#endif

#if HAS_DIGIPOTSS
#include <SPI.h>
#endif

#if ENABLED(DIGIPOT_I2C)
#include <Wire.h>
#endif

#if ENABLED(HAVE_TMCDRIVER)
#include <SPI.h>
#include <TMC26XStepper.h>
#endif

#if ENABLED(HAVE_L6470DRIVER)
#include <SPI.h>
#include <L6470.h>
#endif

  1. Just to confirm, is there some additional config that I need to have in my Arduino.

  2. Sorry, but I am a rookie in this subject. I appreciate your help. Thank you very much

The firmware isn’t loaded correctly.

With arduino’s software closed double click on my .ino file that has the same name as the folder you unzipped. it should load a bunch of tabs in arduino, then flash. Like this video.

Hi, my friend. I think that now I am done. Could you check, please. See the attached print screen.

Seems good to go!

Thanks, buddy. I will test and let you know. Best regards from Brazil.