calling a function works the following way:
you write: function-name + () + ;
In your case you can call the camera_Update function just like this:
Code:
camera_Update();



That will call the function camera_Update.
Write that line before the wait(1) like I explained.