MiniRambo

From RepRap
Jump to: navigation, search
Crystal Clear action run.png
Mini-Rambo

Release status: Working

MiniRamboV1.3a.jpg
Description
Smaller version of RAMBo with 4 stepper drivers.
License
Creative Commons Attribution-ShareAlike 3.0
Author
Contributors
Based-on
Categories
CAD Models
External Link


RAMBo Pages: RAMBo .:. RAMBo v1.0-1.1 .:. RAMBo v1.2 .:. RAMBo v1.3 .:. RAMBo v1.4 .:. RAMBo Firmware .:. RAMBo Development .:. MiniRambo .:. MiniRambo Development .:. EinsyRambo .:. EinsyRambo Development

Summary

This board is based off RAMBo, the Arduino MEGA design, and the work of RepRap community. It has 4 stepper drivers and 4 mosfet switched outputs.

MiniRambo 1.3a main connections.

Version differences concerning LCD controllers

  • 1.2+
    • These versions have two 2x5 pin extension headers that are compatible with the RepRapDiscount LCD controllers.
  • 1.0-1.1
    • These earlier versions use finer pitch GPIO ports that were left off the board during manufacturing. Consequently, it would be difficult to add an LCD panel to these boards.

Differences from Rambo

MiniRambo has:

  • 4 stepper drivers vs. 5
  • 3 Thermistor jacks vs. 4
  • 4 total mosfets vs. 6
  • PWM control of stepper current vs. Digital Trimpot
  • Can connect RepRapDiscount LCD cables directly without an adapter board. (version 1.3a only)
  • Less general purpose IO connectors than Rambo.

Powering Mini-Rambo

MiniRambo you must connect power to the Primary Power input for RAMBo to operate. The USB connection is isolated from the rest of the board and cannot be a power source.

Features

Logic

  • Arduino MEGA compatible Atmega2560 and Atmega32u2 processors are compatible with all RAMPS class firmware
  • Crystals for both usb and mcu (timing accurate to 10ppm)
  • 3 Thermistor jacks

Motor Drivers

  • 4 A4982 1/16th microstep motor drivers(2 connectors on Z for Prusa Mendel and other dual Z printer designs)
  • PWM Outputs for (XY), Z, E0 stepper current control instead of digital trimpot.
  • Current limit on driver IC VCC to prevent permanent latchup
  • Microstep mode configured by MCU through firmware (no jumpers needed)
  • Test points for driver control signals
  • Step and Direction pins are on their own ports for synchronous movement capability

PWM DC outputs (Extruders, Fans, Etc.)

  • 4 outputs (1 Extruder, 1 BED, 2 low power (fan,etc)
  • Low resistance mosfets for cool running
  • Indicator led for each channel

Power

  • 2 power input rails
    • Heated Bed, 15A 12-35V
    • Primary Power 10A 12-28V: Motors (5A dedicated fuse) + Extruders, Fans, & Logic (5A dedicated fuse)
  • Built in SMPS for 5V generation from Extruders + fans and logic

PCB

  • 4 layer
  • 2oz copper on all layers
  • High quality, High temperature FR4-TG130 PCB
  • Gold ENIG finishing

Connectors

  • 4-pin motor plug - Molex 5057-9404
  • 3-pin end-stop plug - Molex 5057-9403
  • 2-pin thermistor plug - Molex 5057-9402

Schematic

https://github.com/ultimachine/Mini-Rambo/blob/1.3a/board/Project%20Outputs%20for%20Mini-Rambo/Mini-Rambo.PDF

MiniRambo 1.3a schematic pg1. MiniRambo 1.3a schematic pg2. MiniRambo 1.3a schematic pg3.

MiniRambo 1.3a schematic pg4. MiniRambo 1.3a schematic pg5.

Fuses

MiniRambo has 3 user replaceable ATO fuses (the type found in many automotives).

  • F1 5A supplies the motors.
  • F2 5A supplies the extruder heater + fan outputs and logic.
  • F3 15A supplies the heated bed output.

Firmware

Firmware Requirements

MiniRambo just like Rambo needs ArduinoAddons to be installed to make use of all the pins. Not installing ArduinoAddons can result in only partially working features. ArduinoAddons can be installed manually or by the new board manager third party url feature. Rambo_firmware#Arduino_1.6.4.2B_Board_Manager_Plugin

Manual Installation Example:
Copy this folder from marlin "MarlinDev-master\ArduinoAddons\Arduino_1.6.x\hardware\marlin" to arduino's hardware directory "arduino-1.6.4\hardware"

Marlin 1.1 RC(RC branch)

https://github.com/MarlinFirmware/Marlin/tree/RC/Marlin

This firmware requires a change in Configuration.h:

#define MOTHERBOARD BOARD_MINIRAMBO

Marlin 1.0.2 (old fork)

fork with Thermal Runaway Protection during heatup phase
https://github.com/tonokip/Marlin/tree/1.0.2-TRP

This firmware requires a change in Configuration.h:

#define MOTHERBOARD 302

Marlin development tree

https://github.com/MarlinFirmware/MarlinDev/

Warning: this firmware is probably broken due to major development.
This firmware requires a change in Configuration.h:

#define MOTHERBOARD BOARD_MINIRAMBO

REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER

Using this Graphical LCD controller requires a fix in Marlin source code. In the file "ultralcd_st7920_u8glib_rrd.h" change this line:

 
#pragma GCC optimize (3)

To:

#pragma GCC optimize (0)

Changing Motor Current (similar to Trimpot/Digipot)

In pins_MINIRAMBO.h (newer firmware) or pins.h (older firmware) you can change this line:

#define DEFAULT_PWM_MOTOR_CURRENT  {1300, 1300, 1250} // XY Z E0

The motor current is controlled by a PWM signal that is turned into a voltage using an RC circuit. It is then fed to the stepper drivers Vref pin. A good troubleshooting tip is to check the Vref test points with a multimeter. The test points are labeled on the PCB as XREF, ZREF, and EREF and are found in the vicinity between the double Z motor connectors and the CPU.

The motor currents can be set during run time using the mcode M907 in Marlin. Recommended for testing purposes only.

M907 X100 Z100 E100 ;Max 255

PWM Pin for a Servo (pin remapping)

There are no "extra" PWM capable pins on MiniRambo for a servo. The Min Endstop pins are PWM capable. If you use min endstops then one of them can be freed up by remapping it to the Max pin.

In "pins.h" under the Mini-Rambo section or "pins_MINIRAMBO.h" (on newer firmware) you will find the pin mapping that need to be modified.

To move X-min to X-max modify the following lines:

#define X_MIN_PIN 12
#define X_MAX_PIN 24

To this:

#define X_MIN_PIN 24 //12
#define X_MAX_PIN -1 //24

This will free up digital pin 12 (X-min signal pin) as the PWM capable pin for a servo. This same concept works for Y and Z endstops.

Example modification here: https://github.com/tonokip/Marlin/commit/f53b6f272d524b99b3c99282c8671416c7dc10db

RepRapDiscount LCD Cables Connection Example

Mini Rambo Rep Rap Discount LCD Cables Connection Example

USB Driver

Mini-Rambo uses the same Windows CDC driver as the RAMBo USB driver.

Changelog

  • 1.3
    • change fuse holder
    • change fan Mosfet
    • silkscreen fixes
    • layout improvements
  • 1.2
    • extension headers changed to 2.54mm pitch
    • fix schematic typos
  • 1.1
    • change soft start capacitor value
    • add filter capacitors to motor outputs

Troubleshooting

This is a generic troubleshooting guide. These steps may vary depending on manufacturer configuration. Contact your supplier if these steps do not help.

  • Cannot connect with 3D printing control software
  • All Heater and Fan LEDs stay lit when board is powered.
    • Check that the power source is not plugged into the Heater outputs.