repetier and SAV MKI

Hi everyone.
I am thinking to buy a 3D printer and I would like to know if REPETIER is compatible with the SAV MKI board.
Thanks in advance.

Comments

  • It does not have a matching pins.h. No one send me one and I don't have that board to do the testing myself.

    But it contains supported components, so compiling it is just copying a printrboard config parts in pins.h and update pin numbers.

    That said, it has one big drawback - only 128K flash. Firmwares are getting better and better but also grow in size. With all features enabled it will break the 128kb limit.
  • i got it to work.... sort of...

    i had to disable SD card support or else i could not get in contact with the board
  • i hijacked motherboard 8 which uses the same chip and just adjusted the pin numbers

    REMEMBER... SD Card does not work... not had the time to figure why

    /****************************************************************************************
    * Teensylu 0.7 pin assingments (ATMEGA90USB)
    * Requires the Teensyduino software with Teensy2.0++ selected in arduino IDE!
    ****************************************************************************************/
    #if MOTHERBOARD == 8
    #define KNOWN_BOARD 1

    #define ORIG_X_STEP_PIN         28
    #define ORIG_X_DIR_PIN          29
    #define ORIG_X_ENABLE_PIN       19
    #define ORIG_X_MIN_PIN          25
    #define ORIG_X_MAX_PIN          -1

    #define ORIG_Y_STEP_PIN         30
    #define ORIG_Y_DIR_PIN          31
    #define ORIG_Y_ENABLE_PIN       18
    #define ORIG_Y_MIN_PIN          26
    #define ORIG_Y_MAX_PIN          -1

    #define ORIG_Z_STEP_PIN         32
    #define ORIG_Z_DIR_PIN          33
    #define ORIG_Z_ENABLE_PIN       17
    #define ORIG_Z_MIN_PIN          -1
    #define ORIG_Z_MAX_PIN          27

    #define ORIG_E0_STEP_PIN         34
    #define ORIG_E0_DIR_PIN          35
    #define ORIG_E0_ENABLE_PIN       13

    #define TEMP_0_PIN          7 // Extruder - ANALOG PIN NUMBER!
    #define TEMP_1_PIN          6 // Bed - ANALOG PIN NUMBER!
    #define HEATER_0_PIN       15 // Extruder
    #define HEATER_1_PIN       14 // bed
    #define HEATER_2_PIN   -1
    #define TEMP_2_PIN     -1

    #define SDPOWER            -1
    #define SDSS                20
    #define LED_PIN            -1

    #define ORIG_FAN_PIN            16 // Fan


    #define ORIG_PS_ON_PIN          -1

    #define E0_PINS ORIG_E0_STEP_PIN,ORIG_E0_DIR_PIN,ORIG_E0_ENABLE_PIN,
    #define E1_PINS

    #if !SDSUPPORT
    // these pins are defined in the SD library if building with SD support
    #define SCK_PIN          21
    #define MISO_PIN         23
    #define MOSI_PIN         22


  • Repetier any clue why SD card does not work?
  • Not really. that is one of these problems that can only be solved locally. Normally it is just a wrong pin definition that is active at the end. 
Sign In or Register to comment.