Thursday, June 8, 2017

Updating my Firmware

In order to be able to run my extruder without it being at temperature, I need to upgrade to Repetier firmware v 0.92.

In order to do the upload, I need to know about the motherboard.

There is no information about the motherboard that I could find printed on the motherboard, or in any of the documentation I had.

Fortunately, I was able to find the motherboard for sale by itself, with the necessary specs listed.

Here's the link to the sale page.

In case the link goes away, here's the info I got from the link.

Tronxy X3A Motherboard Info

Name: Melzi 2.0 1284P 3D printer PCB Board
Model Number: Melzi
Processor: ATMEGA 1284P

Searching the web for ATMEGA 1284P shows that it is an 8-bit microprocessor with 128kB flash, 4KB EEPROM, 16KB SRAM.

So on the Repetier Firmware configuration, I choose Atmel 8-bit for the processor and Melzi board for the motherboard.

Printer type is Cartesian

EEPROM usage: EEPROM set 1
Z Length: 315

At this point, I have no distortion correction, so I won't enter anything.


Trying to Compile Marlin for X3A

Installed Arduino 1.8.2
Added Sanguino board (open preferences, add
https://raw.githubusercontent.com/Lauszus/Sanguino/master/package_lauszus_sanguino_index.json
to the Additional Boards Manager URL's entry.  Open Tools/Boards/Board Manager.  Go to Sanguino entry and select it.  Click on the Install button.)

Set Board to Sanguino

Set Processor to ATMEGA 1284, 8 MHZ

Got errors because the C code isn't compatible with 1.8.2

Installed Arduino 1.0.6 (which uninstalls 1.8.2)

Download the Sanguino files from https://github.com/Lauszus/Sanguino

Copied them to my sketch directory, in a hardware/ folder (as described in README.md).

Started up Arduino 1.0.6

Set board to Sanguino W/ATmega1284 8 MHz

Set Serial port to Com5 (which is the one that was added by my USB driver).

Got an error "speed_lookuptable_fast" was not declared in this scope.

Set board to Sanguino W/ATmega1284 16 MHz.

Successful compilation!  YAY!

Note to self -- I think that I might have gotten the code to work properly with Arduino 1.8.2 by changing the name of the type that gave the error (but I had the wrong processor).  Maybe I need to try 1.8.2 out again.

I was able to get the Marlin code working properly with Arduino 1.8.2.  To do so I need to change fpos_t to fpos_type in the source.

Compiling Repetier

I would like to be able to switch back and forth between repetier (for manual leveling) and marlin (for autoleveling).  So I need to make sure I can compile both.

Unfortunately, I couldn't get Repetier working with Arduino 1.8.2.  So I'm going to go back to 1.0.6.

Downloaded Arduino 1.0.6.

Need to download Sanguino board info (I had it on my PC, but not on my Mac).

Install it in the Sketchbook directory (which is found in Arduino preferences).

FIle compiles. 

OK.  Now I can do both the Marlin and the Repetier.  I guess it's time to try the firmware update.  

TO be able to check things, I added CDS to UI_PRINTER variables in Configuration.h.  That way I will see that I have made a difference.

connected to serial port.  Pressed the upload button.  Got the following error:
avrdude: stk500_getsync(): not in sync: resp=0x73
  Note: this was with the serial port tty.usbserial.
 Now I will try with cu.usbserial
Same error message.

It appears that the problem is the Melzi board doesn't have a bootloader.

So I have ordered the necessary devices to install a bootloader.

I ordered a USBasp, with a 10 to 6 pin converter.

https://www.amazon.com/gp/product/B014J2BMAG

https://www.amazon.com/gp/product/B00CW80MP6

I downloaded the USBasp driver using Zadig for Windows 10.

http://zadig.akeo.ie/

I started up Zadig.  I inserted the USBasp into one of my USB ports.  Zadig automatically detected the hardware configuration of the USBasp.  I selected the libusb-win32 driver and installed it.


I turned off the power to the printer.  I opened up the Tronxy controller box.  I removed the LCD panel cable from the Melzi board.I changed the jumper on the Melzi board to USB power from external power (it's hard to see because the print is so fine, but there's only one set of three jumper pins in a row).  I installed the 6 to 10 pin converter on the 6-pin header at the rear of the Melzi board.  The pin names are listed on the board and on the converter; make sure they match.   I connected the USBasp to the 10 pin side of the converter.  I connected the USB cable from the Tronxy to one of the USB ports on my computer. (So now I have two connections to the Melzi board: the USBasp and the USB cable).

I opened up Arduino (I used version 1.0.6 for this process).  I selected the Sanguino Atmega 1256 16 MHz board.  I selected the USBasp programmer.  I selected the appropriate COM port for my printer.

Then I clicked on the Burn Bootloader button, and waited for a couple of minutes.  After a couple of minutes, it told me the bootloader was downloaded successfully.

So then I opened my Tronxy Repetier firmware in Arduino.  I did a test compile, and everything worked.  I then clicked on the upload button.  It compiled, and took what seemed like an eternity, but it said the firmware was uploaded.

I disconnected the USBasp.  I reset the power jumper to external power.  I reconnected the LCD panel.  I turned on the power.  The printer booted successfully.  Unfortunately, however, the firmware I had loaded didn't have any changes from the factory firmware, so I didn't know if the change had worked.

So I opened a copy of the Tronxy Marlin firmware in Arduino.  I changed the name of the printer (it's in Configuration.h, CUSTOM_MENDEL_NAME).  Did a test compile, followed by an upload.  And the printer reset and had my new name!

It was really easy to update the firmware once I had a bootloader on the Melzi board.  If I can do it, you can too!

Uploading Firmware from my MacBook Pro

I wanted to do an upload on a new Tronxy X3A my son purchased.  My Windows 10 notebook wasn't working, so I decided to try it on my MacBook Pro.

I prepared the motherboard the same way:
  1. Moved the power jumper to the bottom two pins (USB power)
  2. Unplugged the LCD
  3. Connected the 6-pin connector on the USBAsp to the six-pin header on the Melzi.  Make sure VCC goes to 5V and GND goes to GND.
  4. Connected a USB cable between the MacBook and the USB B port on the Melzi
  5. Plugged in the USBAsp to another USB port on the MacBook
I started up Arduino (I'm using 1.86).

Set the proper settings:
  • Board: Sanguino
  • Processor: ATMega 1284 16 MHz
  • Programmer: USBAsp
  • Port: /dev/cu.usbserial-A501S6NS  (it's the new one added when the USB cable is plugged into the Melzi board
Check the connection: 
  • Tools: Board Info
Burn the bootloader:
  • Tools:Burn Bootloader
Don't worry about the warning:
warning: cannot set sck period. please check for usbasp firmware update.

It's just a warning.

Unplug the USBAsp.

Open your Marlin firmware in Arduino, and Upload.  You should see an "Uploading" progress bar on the lower right of the window.  Wait what seems like forever until the upload is complete.

If you have problems uploading, it might be good to open the Arduino Preferences window and set the Show verbose output during upload checkbox.

Disconnect the USB cable


Reset the Power Jumper

Reconnect the LCD

Turn on the power.  You should now have the new Marlin.


Making a hex file to use Octoprint to upload new version of firmware

In Arduino, go to Sketch/Export Compiled Binary

This will create a .hex file that you can upload with Octoprint