Close



Results 1 to 10 of 34

Hybrid View

  1. #1
    Super Moderator Roxy's Avatar
    Join Date
    Apr 2014
    Location
    Lone Star State
    Posts
    2,182
    This is a common error people make. You are not allowed to use floating point numbers in the C preprocessor. The lines you updated:

    #define Y_PROBE_OFFSET_FROM_EXTRUDER -9.00

    should look like:

    #define Y_PROBE_OFFSET_FROM_EXTRUDER -9

    No Floating Point numbers!!!!



  2. #2
    Quote Originally Posted by Roxy View Post
    This is a common error people make. You are not allowed to use floating point numbers in the C preprocessor. The lines you updated:

    #define Y_PROBE_OFFSET_FROM_EXTRUDER -9.00

    should look like:

    #define Y_PROBE_OFFSET_FROM_EXTRUDER -9

    No Floating Point numbers!!!!


    ohhhh

    haha thanks

    edit: That worked but why was -9.00 working on my previous version of Marlin? Also, how am I supposed to write the positions for Z and X?

    After I flashed to the new version my LCD just has square blocks now, am I supposed to define which LCD I am using in one of the files?

    Thanks.
    Last edited by TehStranger; 04-27-2015 at 09:40 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •