Robot Build Hanging

When downloading the code to the robot, it hangs at this point:

[cRIO] Default robotInit() method running, consider providing your own
[cRIO] Default disabled() method running, consider providing your own

I have found what this methods were on the documentation, but I do not know where these go nor what goes in them.

that just says you didn’t override those methods. you have to make those methods in your iterative robot project if u want them to run

What do I have to initialize and disable in these methods and where in the robot code does these methods go?

Make a new “IterativeRobot” project and all of the code will be automatically added for you

[cRIO] Default robotInit() method running, consider providing your own
[cRIO] Default disabled() method running, consider providing your own

I’m pretty sure that if these messages are appearing, it’s an indicator that the build was successful and is now running on the robot.

You don’t need them present in order to function. If you don’t override them, it just uses the init and disabled methods from the parent class.