1. Home
    1. Dashboard
    2. Search
  2. Forum
    1. Unresolved Threads
    2. Members
      1. Recent Activities
      2. Users Online
      3. Team Members
      4. Search Members
      5. Trophys
  3. Articles
  4. Blog
  5. Videos
  6. Jobs
  7. Shop
    1. Orders
  • Login or register
  • Search
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Blog Articles
  • Products
  • More Options
  1. Robotforum - Support and discussion community for industrial robots and cobots
  2. Forum
  3. Industrial Robot Support and Discussion Center
  4. KUKA Robot Forum
Your browser does not support videos RoboDK Software for simulation and programming
Visit our Mainsponsor
IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Sponsored Ads

Selection inadmissible - KUKA KRC4

  • lfbmarques
  • January 29, 2021 at 3:31 PM
  • Thread is Unresolved
  • lfbmarques
    Trophies
    3
    Posts
    13
    • January 29, 2021 at 3:31 PM
    • #1

    Hello,

    I'm generating a code from RobotMaster for additive manufacturing, but when I try to select it in the SmartPad, it shows the error messagem 1360 "selection inadmissible". I've searched for it in the error list but don't know what may cause this problem (I am new to KUKA programming).

    I'm using a KRC4 controller and a KR 70 R2100 robot.

    The auto-generated code is:

    &ACCESS RVP

    &REL 1

    &COMMENT GENERATED BY ROBOTMASTER

    &PARAM TEMPLATE = C:\KRC\Roboter\Template\vorgabe

    &PARAM EDITMASK = *

    DEF Program_1()

    EXT BAS(BAS_COMMAND: IN, REAL: IN)

    INT I

    BAS (#INITMOV, 0)

    ;******SETTINGS FOR PTP MOTION***********************

    ;FOLD PTP $VEL_AXIS AND $ACC_AXIS

    FOR I=1 TO 6

    $VEL_AXIS[I] = 20

    $ACC_AXIS[I] = 50

    ENDFOR

    ;ENDFOLD (PTP $VEL_AXIS AND $ACC_AXIS)

    ;******SETTINGS FOR LIN AND ARC MOTION***************

    ;FOLD LIN AND ARC MOTION VARIABLES

    $VEL.ORI1 = 200

    $VEL.ORI2 = 200

    $ACC.CP = 3

    $ACC.ORI1 = 100

    $ACC.ORI2 = 100

    ;ENDFOLD (LIN AND ARC MOTION VARIABLES)

    ;******SETTINGS FOR POSITIONING CRITERIA*************

    ;FOLD POSITIONING CRITERIA

    $APO.CDIS = 0.5

    $ORI_TYPE = #VAR

    ;ENDFOLD (POSITIONING CRITERIA)

    $BASE={X 660.0000,Y -1000.0000,Z 331.4000,A 0.0000,B 0.0000,C 0.0000}

    $TOOL={X 0.0000,Y -230.0000,Z 47.0000,A 0.0000,B -90.0000,C 90.0000}

    $ADVANCE = 5

    <thousands of motion commands>

    END

    It is something in the code or may be some configuration issue?

    Thanks!

  • massula
    Reactions Received
    200
    Trophies
    8
    Posts
    1,426
    • January 29, 2021 at 4:47 PM
    • #2

    I would advice You to open this program in WorkVisual and see if it point some syntax error.

    The normal behavior in this situation should be SmartPad pointing the errors itself, but If I remember correctly, I had this situation in the past.

    And also: what is the size of this program?

    These 3D printing programs tend to be huge, and KRC has a size limit regarding the contents or R1 folder. 10 MB or so.

  • lfbmarques
    Trophies
    3
    Posts
    13
    • January 29, 2021 at 4:55 PM
    • #3

    Thank you for the quick answer!

    The file has 1.26 MB. I will check for more problems.

    There are other folders where I can save the programs instead of R1?

  • massula
    Reactions Received
    200
    Trophies
    8
    Posts
    1,426
    • January 29, 2021 at 5:05 PM
    • #4

    1,26 MB is inside KRC limits, so this shoudn't be the problem.

    Programs must be inside R1 folder, preferably on Program subfolder.

  • panic mode
    Reactions Received
    1,262
    Trophies
    11
    Posts
    13,030
    • January 29, 2021 at 5:12 PM
    • #5

    according to header parameters, this file is visible (&ACCESS= ...V...) and therefore should be selectable.

    then V is missing, module is not "visible" and not selectable but it can be called from other programs

    DEF TEST()

    Program_1()

    END

    to toggle Visible parameter use smartPad menu Edit>Properties>Module Inf...

    1) read pinned topic: READ FIRST...

    2) if you have an issue with robot, post question in the correct forum section... do NOT contact me directly

    3) read 1 and 2

  • hermann
    Reactions Received
    403
    Trophies
    9
    Posts
    2,593
    • January 29, 2021 at 7:48 PM
    • #6

    R1 is the correct folder, you can create subfolders under R1 and store it there.

    How did you copy the file to the robot?

    Post a screenshot of the Smartpad with the program and error message.

  • dddomodossola
    Reactions Received
    14
    Trophies
    3
    Posts
    25
    • January 30, 2021 at 9:12 AM
    • #7

    Hello guys,

    Maybe it could be an error to other files like $config.dat that prevents it to select the other programs. Check if other files in R1/System have a red X over file icon, eventually check for errors.

    Kind Regards

  • lfbmarques
    Trophies
    3
    Posts
    13
    • January 30, 2021 at 7:45 PM
    • #8
    Quote from panic mode

    according to header parameters, this file is visible (&ACCESS= ...V...) and therefore should be selectable.

    then V is missing, module is not "visible" and not selectable but it can be called from other programs

    DEF TEST()

    Program_1()

    END

    to toggle Visible parameter use smartPad menu Edit>Properties>Module Inf...

    Display More

    I change the Visible parameters and solved the issue. Thanks!

    Thanks everyone for the hints.

  • Rodrigo Martinez
    Trophies
    3
    Posts
    4
    • February 26, 2022 at 7:14 PM
    • #9

    Hello Marques, do you know where can I get a demo of robotmaster?

  • panic mode
    Reactions Received
    1,262
    Trophies
    11
    Posts
    13,030
    • February 27, 2022 at 4:25 AM
    • #10

    https://www.robotmaster.com/

    1) read pinned topic: READ FIRST...

    2) if you have an issue with robot, post question in the correct forum section... do NOT contact me directly

    3) read 1 and 2

Advertising from our partners

IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Advertise in Robotics
Advertise in Robotics

Job Postings

  • Anyware Robotics is hiring!

    yzhou377 February 23, 2025 at 4:54 AM
  • How to see your Job Posting (search or recruit) here in Robot-Forum.com

    Werner Hampel November 18, 2021 at 3:44 PM
Your browser does not support videos RoboDK Software for simulation and programming

Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • robodk
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Thread Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • robodk
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Tags

  • KUKA
  • KRC4
  • robotmaster
  1. Privacy Policy
  2. Legal Notice
Powered by WoltLab Suite™
As a registered Member:
* You will see no Google advertising
* You can translate posts into your local language
* You can ask questions or help the community with your knowledge
* You can thank the authors for their help
* You can receive notifications of replies or new topics on request
* We do not sell your data - we promise

JOIN OUR GREAT ROBOTICS COMMUNITY.
Don’t have an account yet? Register yourself now and be a part of our community!
Register Yourself Lost Password
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on Google Play
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on the App Store
Download